Search All of the Math Forum:
Views expressed in these public forums are not endorsed by
NCTM or The Math Forum.
|
|
Math Forum
»
Discussions
»
Software
»
comp.soft-sys.matlab
Notice: We are no longer accepting new posts, but the forums will continue to be readable.
Topic:
How to tell matlab to ignore a chunk of code
Replies:
2
Last Post:
Mar 10, 2013 10:21 PM
|
 |
|
|
Re: How to tell matlab to ignore a chunk of code
Posted:
Mar 10, 2013 10:13 PM
|
|
"Paul" <paul.domaskis@gmail.com> wrote in message news:1566c07a-1ff0-4513-a3b2-54fb7b249983@f6g2000yqm.googlegroups.com... > In C, one can pragmas designate entire sections of code to be > ignored. I can use the Matlab "if" statement to accomplish the same > thing in Matlab, but it doesn't work if the code to be ignored > contains a nested function. Apart from commenting out the entire > section, is there a way to bookend the section of code with some kind > of flag to accomplish the same thing? I am not compiling the code for > stand alone execution.
Commenting out the section of code is how I'd handle this situation. You can use block comments to do so by starting the comment with %{ on its own line and ending with %} on its own line.
http://www.mathworks.com/help/matlab/ref/specialcharacters.html
-- Steve Lord slord@mathworks.com To contact Technical Support use the Contact Us link on http://www.mathworks.com
|
|
|
|