Main Home Quick tour Handbook Docs Mailing Lists Demonstration Download Sourceforge project FAQ Links
Toolboxes Char Control Crypto Deprecated Engine Finance FunFun General Graphics 3D Graphics Image Integration InputOutput JMathLib LinearAlgebra Matrix Miscellaneous Net Polynomial Set Signal SpecFun SpecialMatrix Statistics String System Time Trigonometric UserInterface ...
Contact Developers
Table of Contents
There are two ways of writing if statements
if(test1) { code1; } elseif(test2) { code2; } else { code3; };
if test1 code1; elseif test2 code2; else code3; end;
Last modified