how to plot 1x1 struct timeseries having field names cell 1x1 array? The .mat file is a time series data with 3 columns of data with respect to time.
    7 ビュー (過去 30 日間)
  
       古いコメントを表示
    
% %  Plotting data from the .mat file
data = load('THPWM.mat')
sCell = struct2cell(data); 
Array = [sCell{:}];
t= Array(:,1);
x= Array(:,2);
plot(t,x);
採用された回答
  darova
      
      
 2021 年 8 月 15 日
        Extrac the data and plo
% %  Plotting data from the .mat file
data = load('THPWM.mat');
fieldnames(data)
data.ans
x = data.ans.Data(:,1);
y = data.ans.Data(:,2);
z = data.ans.Data(:,3);
plot3(x,y,z)
その他の回答 (0 件)
参考
カテゴリ
				Help Center および File Exchange で Structures についてさらに検索
			
	製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


