Plotting data from table
5 ビュー (過去 30 日間)
古いコメントを表示
how can i plot every column ( of a 2 columns table )as a function of time in two different axes ?
0 件のコメント
回答 (2 件)
Wei
2013 年 12 月 20 日
You need to convert the table data into numbers, and you need the time for the plot. Try this:
data = str2double(get(handles.table,'data');
plot(axes1, t1, data(:,column's name1));
plot(axes2, t2, data(:,column's name2));
参考
カテゴリ
Help Center および File Exchange で Subplots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!