Matlab基本函式 disp函式

2021-06-18 20:50:27 字數 1659 閱讀 7569

1、disp函式:顯示文字或陣列

2、用法說明:disp(x) 函式顯示指定的文字或陣列。如果參量是陣列,則顯示陣列的內容;如果參量是字串,則顯示字串文字的內容

3、例項

(1)參量是字串

>> x = 'hello,world!'

x =hello,world!

>> disp(x)

hello,world!

(2)參量是陣列或矩陣
>> x = rand(8,8)

x = 0.8147 0.9575 0.4218 0.6787 0.2769 0.4387 0.7094 0.9597

0.9058 0.9649 0.9157 0.7577 0.0462 0.3816 0.7547 0.3404

0.1270 0.1576 0.7922 0.7431 0.0971 0.7655 0.2760 0.5853

0.9134 0.9706 0.9595 0.3922 0.8235 0.7952 0.6797 0.2238

0.6324 0.9572 0.6557 0.6555 0.6948 0.1869 0.6551 0.7513

0.0975 0.4854 0.0357 0.1712 0.3171 0.4898 0.1626 0.2551

0.2785 0.8003 0.8491 0.7060 0.9502 0.4456 0.1190 0.5060

0.5469 0.1419 0.9340 0.0318 0.0344 0.6463 0.4984 0.6991

>> disp(x)

0.8147 0.9575 0.4218 0.6787 0.2769 0.4387 0.7094 0.9597

0.9058 0.9649 0.9157 0.7577 0.0462 0.3816 0.7547 0.3404

0.1270 0.1576 0.7922 0.7431 0.0971 0.7655 0.2760 0.5853

0.9134 0.9706 0.9595 0.3922 0.8235 0.7952 0.6797 0.2238

0.6324 0.9572 0.6557 0.6555 0.6948 0.1869 0.6551 0.7513

0.0975 0.4854 0.0357 0.1712 0.3171 0.4898 0.1626 0.2551

0.2785 0.8003 0.8491 0.7060 0.9502 0.4456 0.1190 0.5060

0.5469 0.1419 0.9340 0.0318 0.0344 0.6463 0.4984 0.6991

matlab中disp的用法

disp x 顯示乙個陣列時不需要輸出它的名稱。如果x包含乙個文字字串,則顯示字串。另一種在電腦螢幕上顯示陣列的方法是輸出陣列的名稱,但在輸出結果之前還有乙個抬頭,通常是不需要的。disp函式僅接受乙個輸入。為了顯示多於乙個陣列和字串,需要將函式sprintf或fprintf串聯起來。注意disp不...

matlab 中disp 常見用法

disp 函式在matlab中使用help指令得出的結果如下 disp 顯示變數的值 此 matlab 函式 顯示變數 x 的值,而不列印變數名稱。顯示變數的另一種方法是鍵入它的名稱,這種方法會在值前面顯示乙個前導x disp x 既然引數只有乙個那麼分為3種 輸出數字陣列 例如 x 3 disp ...

matlab中 fprintf 和disp的用法

disp pi pi error using disp too many input arguments.disp sprintf 圓周率pi 8.5f pi 圓周率pi 3.14159 想把字串pi 和變數pi的值顯示在一行上,試用disp pi pi 回答這是非法的.這時應該用sprintf函式...