signal Processing data plot
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
mathematics
am 13 Sep. 2019
Kommentiert: mathematics
am 14 Sep. 2019
Dear all,
How to plot fprintf data results as a table in figure?
Thank you
0 Kommentare
Akzeptierte Antwort
KALYAN ACHARJYA
am 13 Sep. 2019
Bearbeitet: KALYAN ACHARJYA
am 13 Sep. 2019
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
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Annotations finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!