(translator=anticat, ChineseSource=anticat-20020704-12\disp.html, EnglishSource=c:\matlabr12\help\techdoc\ref\disp.html)

MATLAB Function Reference

   

disp

顯示文字或陣列

Syntax

disp(X)

Description

disp(X) 顯示一個陣列而不印出陣列名稱。 x包含一個文字字串的話,該字串會被顯示出來。

另一種在螢幕上顯示陣列的方法是直接鍵入陣列的名字,但這同時會在開頭部分印出 "X =," ,而這不總是需要的。

Examples

在一個M檔案中使用 disp 的功能為根據行號顯示一個方陣。

disp('         Corn         Oats         Hay')
disp(rand(5,3))

結果為

         Corn         Oats         Hay
        0.2113        0.8474        0.2749
        0.0820        0.4524        0.8807
        0.7599        0.8075        0.6538
        0.0087        0.4832        0.4899
        0.8096        0.6135        0.7741

See Also

format, int2str, num2str, rats, sprintf

 

 

dir

 

disp (serial)