signal Processing data plot

1 visualización (últimos 30 días)
mathematics
mathematics el 13 de Sept. de 2019
Comentada: mathematics el 14 de Sept. de 2019
Dear all,
How to plot fprintf data results as a table in figure?
Thank you

Respuesta aceptada

KALYAN ACHARJYA
KALYAN ACHARJYA el 13 de Sept. de 2019
Editada: KALYAN ACHARJYA el 13 de Sept. de 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
  1 comentario
mathematics
mathematics el 14 de Sept. de 2019
Thank you very much for your reply. Could you please tell me how i can put this table on figure? as a display in figure

Iniciar sesión para comentar.

Más respuestas (0)

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by