Borrar filtros
Borrar filtros

Equivalent to "GOTO" to jump to different mfiles?

4 visualizaciones (últimos 30 días)
Stenila  Simon
Stenila Simon el 11 de Nov. de 2017
Editada: Stenila Simon el 11 de Nov. de 2017
I am trying to write a code that will ask the user for an input, and depending on the input, different mfiles will be run. Say, for example, when this code runs, it will display: "Please input section code:" and then the user can input any value from 1 to 5, and if they input "1", a separate mfile that contains all the info for section 1 will run, for input "2", a different mfile for section 2, etc.
Is there something like "goto" that I can use in Matlab for this purpose?
EDIT: I figured it out nevermind!

Respuestas (1)

John D'Errico
John D'Errico el 11 de Nov. de 2017
NO. Why would you possibly need it? Learn to use MATLAB, instead of trying to use some other language inside MATLAB. There are many ways to do this. Simplest is a switch.
switch SectionNum
case 1
Sect1mfile
case 2
Sect2mfile
otherwise
error('the sky is falling!')
end
Just call the desired m-file in the corresponding branch. You can have as many cases as you want.
Or do the same thing using an if/elseif form instead.

Categorías

Más información sobre MATLAB en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by