Plot values for different time steps in table
4 次查看(过去 30 天)
显示 更早的评论
Hi,
I have a table with dimensions for 1:1048576 and I want to plot columns 2 and 3 for different time steps. The values in the table are sorted in such a way that the next time step comes after 10498 rows. Can someone help me and tell me how to use a loop to automatically plot the different time steps? Instead of plotting 1:10498, 10499:20998, .....
Thank you and have a nice day
0 个评论
回答(1 个)
Walter Roberson
2022-5-4
perstep = 10498;
col2 = YourTable{:,2};
col3 = YourTable{:,3};
L = numel(col2);
full_steps = floor(L / perstep);
left_over = L - full_steps * perstep;
if left_over ~= 0
padding_size = perstep - left_over;
padding = nan(padding_size, 1);
col2 = [col2; padding];
col3 = [col3; padding];
end
col2 = reshape(col2, perstep, []);
col3 = reshape(col3, perstep, []);
It is not clear what you want on your x axes or y axes.
At the end of the code posted above, col2 and col3 are each 2D arrays, with as many rows as perstep (10498), and as many columns as needed to complete the signal (in particular, 100 columns). The final column in each of the two is padded with nan to complete the 10498 samples.
What to do next depends on what you want plotted. You could now, for example,
plot(col2)
and the result would be a plot with 100 lines, one per timestep.
3 个评论
Walter Roberson
2022-5-4
编辑:Walter Roberson
2022-5-4
If you wanted column 2 versus column 3, for each time step, then after the above,
for STEP = 1 : size(col2,2)
plot(col2(:,STEP), col3(:,STEP), 'DisplayName', "STEP = " + STEP);
hold on
end
hold off
legend show
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Loops and Conditional Statements 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!