MATLAB Function Reference |
Syntax
cellplot(c) cellplot(c,'legend') handles = cellplot(...)
Description
產生一個圖形視窗畫圖顯示 cellplot(c)
c
的內容。以填滿的長方形表示向量或陣列的元素,純量和簡短的字串則以文字表示。
cellplot(c,'legend')
在圖形旁邊附加說明。
產生一個圖形視窗並回傳一個表面控制(surface handles)向量。handles = cellplot(c)
Limitations
Examples
一個維度 2 x 2 的陣列格包含一個矩陣、一個向量和兩個文字字串:
c{1,1} = '2-by-2'; c{1,2} = 'eigenvalues of eye(2)'; c{2,1} = eye(2); c{2,2} = eig(eye(2));
cellfun | cellstr |