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!