在MATLAB的 if...else...end 语句中,if 语句后面可以跟一个可选择的 else 语句,当执行的表达式为假的时候,执行 else 语句。
MATLAB 中一个 if ... else 语句的语法示例:
if <expression> % statement(s) will execute if the boolean expression is true <statement(s)> else <statement(s)> % statement(s) will execute if the boolean expression is false end
如果布尔表达式的值为 “true”,那么执行 if 的代码块;如果布尔表达式的值为 “false”,else 的代码块将被执行。
在MATLAB中建立一个脚本文件,并输入下述的代码:
a = 100; % check the boolean condition if a < 20 % if condition is true then print the following fprintf("a is less than 20 " ); else % if condition is false then print the following fprintf("a is not less than 20 " ); end fprintf("value of a is : %d ", a);
编译和执行上述代码,产生下述结果:
a is not less than 20 value of a is : 100
如果你在Dim语句里没有明确变量的数据类型,你最终将得到没有归类的变量。没有归类的包括,在VBA里,总是当成Variant数据类型。...
什么是宏宏是一些储存了一系列命令的程序。当你创建一个宏命令的时候,你只是将一系列的键盘输入结合成一个简单的命令,你以后可...
ASP.NET HyperLink Text 属性 HyperLink 控件定义和用法 Text 属性用于设置或返回 HyperLink 控件的文本。 语法asp:HyperLink Te...
ASP.NET RadioButtonList CellSpacing 属性 RadioButtonList 控件定义和用法 CellSpacing 属性用于获取或设置 RadioButtonList ...
ASP.NET CustomValidator 控件 Validation 服务器控件定义和用法 CustomValidator 控件允许您书写处理输入值验证的方法。属性 属...