フィルターのクリア

How to plot components of a cell array?

2 ビュー (過去 30 日間)
Daniel
Daniel 2016 年 2 月 17 日
編集済み: Azzi Abdelmalek 2016 年 2 月 17 日
I have a cell array looking something like this.
event{event_log} = [1,9,212] [4,12,200] [5,12,180] [6,12,200] [9,15,200] [10,15,200].
The first integer in each vector represents a time stamp, and the second two are events which are correlated with that time stamp, eg [time yaw speed]. event_log is simply a counter adding a new vector each time an event occurs.
How do I make a 3D scatter plot with time on the xaxis, yaw on the y, and speed on the z? Or a plotyy with time on the xaxis, and the other two on the two y axis.

採用された回答

Azzi Abdelmalek
Azzi Abdelmalek 2016 年 2 月 17 日
編集済み: Azzi Abdelmalek 2016 年 2 月 17 日
w={[1,9,212] [4,12,200] [5,12,180] [6,12,200] [9,15,200] [10,15,200]}
v=cell2mat(w')
plot3(v(:,1),v(:,2),v(:,3))

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeTwo y-axis についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by