📜  MATLAB中的注释

📅  最后修改于: 2021-04-17 03:37:40             🧑  作者: Mango

注释是通用的英语句子,主要写在程序中以解释其作用或一段代码应做的事情。更具体地说,程序员应关注的信息与代码的逻辑无关。它们被编译器完全忽略,因此永远不会反映到输入中。

在MATLAB中,注释有两种类型:

  • 单行注释
  • 阻止评论
  • 跨越多行

单行注释

单行注释是仅需要一行的注释。通常起草它们是为了解释一行代码的作用或应该产生的内容,以便它可以帮助某人引用源代码。使用%运算符添加单行注释。这可以写在单独的行中,也可以附加到同一行的代码中。

句法 :

% single line comment

例子 :

MATLAB
disp("Below is the comment using %"); 
% this is a comment


MATLAB
disp("Below is the block comment using %"); 
%{ 
this is a 
comment 
using % 
%}


MATLAB
%{
a = [1 2 3]
b = 5
%}
  
x = ['Matlab is a '...
'programming langauge'...
...'invented by Cleve Moler'...
', it is user friendly']


输出 :

Below is the comment using %

阻止评论

要进行块注释,只需在块的开头放置“%{”,在块的末尾放置“%}”。

句法:

%{
multiline
comment
%}

例子 :

的MATLAB

disp("Below is the block comment using %"); 
%{ 
this is a 
comment 
using % 
%}

输出 :

Below is the block comment using %

注释跨越多行

注释多行语句的一部分使用省略号(…)。

例子 :

的MATLAB

%{
a = [1 2 3]
b = 5
%}
  
x = ['Matlab is a '...
'programming langauge'...
...'invented by Cleve Moler'...
', it is user friendly']

输出 :

Matlab is a programming language, it is user friendly

要注释掉脚本中的代码行,请按Ctrl + R,要取消注释,请按Ctrl +T。