matlib打印语句_matlab输出语句是什么
matlab输出语句有两种,分别是:1、⾃由格式,语法如“disp(23+454-29*4)”;2、格式化输出,语法如“fprintf('The area is %8.5f\n',area)”。
MATLAB的输⼊与输出语句
1.MATLAB的输⼊语句input函数⽤于接收⽤户的输⼊:
a.输⼊数据>> x=input('please input a number:')
please input a number:22
x =
22
b.输⼊字符串>> x=input('please input a string:','s')
please input a string:this is a string
x =
this is a string
2.MATLAB输出语句包括⾃由格式(disp)和格式化输出(fprintf)两种>> disp(23+454-29*4)
361
>> disp([11 22 33;44 55 66;77 88 99])
fprintf格式11 22 33
44 55 66
77 88 99
>> disp('this is a string')
this is a string
>> area=12.56637889;
>> fprintf('The area is %8.5f\n',area)
The area is 12.56638
>>

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。