我是靠谱客的博主 害怕羊,最近开发中收集的这篇文章主要介绍matlab中disp函数的简单用法,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

disp的用法

在matlab中help disp 

DISP Display array.
    DISP(X) displays the array, without printing the array name.  In
    all other ways it's the same as leaving the semicolon off an
    expression except that empty arrays don't display.
 
    If X is a string, the text is displayed.


意思是输出数组类型的数据,也可以把string类型的数据看做数组输出

(1)输出数字

>> num = 1;
>> disp(num)
     1


(2)输出字符串

>> disp('this is string')
this is string
>> 

(3)输出数字和字符串

>> num = 1;
>> disp(['num:',num2str(num)])
num:1

(4)输出数组

>> a=[1 2 3];
>> disp(a)
     1     2     3

最后

以上就是害怕羊为你收集整理的matlab中disp函数的简单用法的全部内容,希望文章能够帮你解决matlab中disp函数的简单用法所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(55)

评论列表共有 0 条评论

立即
投稿
返回
顶部