signal Processing data plot
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
mathematics
le 13 Sep 2019
Commenté : mathematics
le 14 Sep 2019
Dear all,
How to plot fprintf data results as a table in figure?
Thank you
0 commentaires
Réponse acceptée
KALYAN ACHARJYA
le 13 Sep 2019
Modifié(e) : KALYAN ACHARJYA
le 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
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Annotations dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!