signal Processing data plot
1 回表示 (過去 30 日間)
古いコメントを表示
Dear all,
How to plot fprintf data results as a table in figure?
Thank you
0 件のコメント
採用された回答
KALYAN ACHARJYA
2019 年 9 月 13 日
編集済み: KALYAN ACHARJYA
2019 年 9 月 13 日
Please do change as per your requirements
T=table;
for k=1:100
data1=k;
%fprintf('The value is %d \n',data1);
data2=k+10;
%fprintf('The 2nd value is %d \n',data2);
table_data=table(data1,data2);
T=[T;table_data];
end
T.Properties.VariableNames = {'Data1_Name' 'Data2_Name'};
T
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Annotations についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!