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)两种
>> disp23+454-29*4) 361 >> disp[11 22 33;44 55 66;77 88 99]) 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 >>
登录后复制
以上就是matlab输出语句是什么的详细内容,更多请关注风君子博客其它相关文章!