Borrar filtros
Borrar filtros

How to define user-defined code blocks MATLAB?

15 visualizaciones (últimos 30 días)
Sabri Çetin
Sabri Çetin el 21 de Jun. de 2016
Comentada: Walter Roberson el 2 de Jul. de 2016
We have code blocks like 'if' and 'while'. Can we create our own code blocks?
If so, could you explain how to do that? Any answer is appreciated, thank you in advance.

Respuesta aceptada

Steven Lord
Steven Lord el 22 de Jun. de 2016
If you're trying to overload the end keyword (in the context of an indexing expression for an instance of your user-defined class) follow the instructions on that documentation page for how to do so.
----------------
For all other keywords (as listed in the output of the iskeyword function; some examples are if, for, switch, classdef, etc.) or for overloading end in the context of ending a code block started by another keyword, the first part of the first step to do so is to go here.
Once you have completed the first step, the second step is to discuss your proposed new keyword with your manager and other interested parties. They will walk you through the rest of the steps.
----------------
A less strenuous approach, but one that requires additional time and is not guaranteed to succeed, is to contact Technical Support and ask them to file an enhancement request for your new keyword. Describe what you want that new keyword to do and how you would use it if it existed. The developers will review that enhancement request and may choose to implement that new keyword or a variant of it.

Más respuestas (1)

Walter Roberson
Walter Roberson el 21 de Jun. de 2016
I am not sure if you are referring to MATLAB itself or to Simulink?
If you are referring to MATLAB then perhaps you want "function" ?? There is no direct MATLAB equivalent to C's {} or what some languages would use begin/end for, partly because in MATLAB if and while and for already require blocks terminated with end, not statements. There is no MATLAB equivalent to C's
if (this) ring_location = mordor;
there is only the MATLAB equivalent to C's
if (this) { ring_location = mordor; }
On the other hand, in C and some other languages, a "block" is a scope that can have local variables that are automatically removed at the end of the block; MATLAB does not have any equivalent to that (nested functions do part of that task, but nested functions cannot be declared inside of control statements in MATLAB.)
You might want to separate out a block of code for style reasons. MATLAB provides code folding and code sections
  6 comentarios
Sabri Çetin
Sabri Çetin el 2 de Jul. de 2016
Should they have the ability to control the flow, such as if you wanted to define a "do/until" operator?
The code block in my mind controls the flow, a "do/until" operator. I would like to have 2 conditions, if the first one is true, some statements are executed, in the first is false, but the second condition holds, then some other statements are executed. In the case that none of the conditions holds, then the executions ends.
while(true)
if(p)
Statement Group 1
elseif(q)
Statement Group 2
else
break
end
end
For this, I would like to have something like the following
while(p)
Statement Group 1
elsewhile(q)
Statement Group 2
end
Walter Roberson
Walter Roberson el 2 de Jul. de 2016
MATLAB does not offer any possibility to implement something like that.
One implementation of that in MATLAB would be
while (p | q)
if (p)
Statement Group 1
else
Statement Group 2
end
end

Iniciar sesión para comentar.

Categorías

Más información sobre Simulink Environment Customization en Help Center y File Exchange.

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by