how to plot graph from text data as shown in the image
    3 ビュー (過去 30 日間)
  
       古いコメントを表示
    

0 件のコメント
採用された回答
  KALYAN ACHARJYA
      
      
 2021 年 3 月 6 日
        
      編集済み: KALYAN ACHARJYA
      
      
 2021 年 3 月 6 日
  
      Try this way in MATLAB edit window
%Load the file 
A=readmatrix('file.txt');
Get the x and y values
x=A(:,1);
x=A(:,2);
Plot the x and y data
plot(x,y);
Before plotting make sure the lengths of x and y are the same length, if not the same length, then check the data arrangement format within the text file.
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
				Help Center および File Exchange で Data Import and Export についてさらに検索
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

