Suppose I have a matrix 20x7200
So, I have 20 vectors with 7200 samples each. I want to plot a graph that consists of the 20 vectors side by side, with its size and its values.
Does anyone knows how to do it?

 採用された回答

Image Analyst
Image Analyst 2016 年 7 月 23 日
編集済み: Image Analyst 2016 年 7 月 23 日

0 投票

plot() won't do them "side by side" but will do them all overlapped on top of the same graph. How about waterfall() or ribbon()? This will put them side-by-side in a 3-D-ish rendering.

その他の回答 (1 件)

Azzi Abdelmalek
Azzi Abdelmalek 2016 年 7 月 23 日
編集済み: Azzi Abdelmalek 2016 年 7 月 23 日

0 投票

plot(M')
%Example
M=randi(10,4,20)
plot(M')

1 件のコメント

Eduardo Zanella de Arruda
Eduardo Zanella de Arruda 2016 年 7 月 23 日
supose I have these 3 vectors x = [1 10 20 6 2 0 30]; y = [2 30 22 10 5 10 3]; z = [4 3 3 3 8 41 20];
I want to plot them side by side in a 3d graph, how would you do?

サインインしてコメントする。

カテゴリ

ヘルプ センター および File Exchange2-D and 3-D Plots についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by