当前位置:网站首页>Day (4) of picking up matlab
Day (4) of picking up matlab
2022-04-23 15:59:00 【Sola_ Ex】
Pick up MATLAB My fourth day
Matlab
if Use
if Conditions
esleif Conditions
....
else
end
switch Use
switch Variable
case Conditions 1
Perform tasks 1
case Conditions 2
Perform tasks 2
....
otherwise
Perform other
end
Input statement
X = input('message') % Input data format
X = input('message','s') % Input string format
notes : Inside massage You can write something else , Such as : Please export xxx. In data format , Using a string will result in an error . String supports Chinese input .
Output statement
disp()
I think this disp() Your orders are interesting , Rich and colorful formats , Such as :
disp(' Xu Lao is very awesome ') % Print characters directly
disp([' peng ',[' Guy '],[' It's also awesome '])
disp(666)
disp([' Xu Lao ',num2str(666)]) % Printing effect , Xu Lao 666
Format output :
fprintf(formatSpace,A) %formatSpace Is the format type ,A Is the output
Such as :
fprintf(' Xu Lao long %d\n cm',14) % effect : Xu Lao long 14 cm
fprintf(' Guijia long %4.1f\n cm',5.1) % effect : Guijia long 5.1 cm
In fact this with C The language is very similar to .
for loop
for Loop control variable = Variable range
Execute statement
end
Such as :
for a=10:20
fprintf('value is %d\n',a)
end
The final result is to print 10-20 All integers of ( In steps of 1)
while loop
while Judge the condition
Execute statement
end
Be careful :while The judgment conditions in , It's actually if It's the same inside .
break And continue
break Use , Such as :
while true
....
if Conditions met
break;
end
end
if Inside break immediate withdrawal while loop ,
continue Use , Such as :
while true
....
if Conditions met
continue;
end
end
The function is to exit this while loop , Then go on to the next while.
Special reminder :
stay matlab in , Whether through script (.m file ) Or directly in cmd windows Executed under while, If while Always in a cycle , And you want to stop , You can press ctrl +c Forced shutdown .( I've got the blue screen of the computer )
版权声明
本文为[Sola_ Ex]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/04/202204231554164141.html
边栏推荐
猜你喜欢
捡起MATLAB的第(4)天
C语言自编字符串处理函数——字符串分割、字符串填充等
GRBL学习(一)
Day (9) of picking up matlab
C#,贝尔数(Bell Number)的计算方法与源程序
Why is IP direct connection prohibited in large-scale Internet
Coalesce and repartition of spark operators
5 minutes, turn your excel into an online database, the magic cube net table Excel database
Spark 算子之sortBy使用
Grbl learning (I)
随机推荐
C language self compiled string processing function - string segmentation, string filling, etc
Win11/10家庭版禁用Edge的inprivate浏览功能
R语言中绘制ROC曲线方法二:pROC包
C language --- string + memory function
糖尿病眼底病变综述概要记录
Config learning notes component
Distinct use of spark operator
【现代电子装联期末复习要点】
leetcode-396 旋转函数
Large factory technology implementation | industry solution series tutorials
Accumulation of applet knowledge points
Import address table analysis (calculated according to the library file name: number of imported functions, function serial number and function name)
新动态:SmartMesh和MeshBox的合作新动向
Go language, array, pointer, structure
dlopen/dlsym/dlclose的简单用法
Go concurrency and channel
The length of the last word of the string
C#,贝尔数(Bell Number)的计算方法与源程序
[section 5 if and for]
Matplotlib tutorial 05 --- operating images