How to implement a for loop on figure plotting?
1 次查看(过去 30 天)
显示 更早的评论
Hi,
The size of f is 1*500, while the size of Q is 115 * 500. I want to plot Q at few selected f values say with the iinterval of 100 etc. How I can code for a for loop?
0 个评论
回答(1 个)
Star Strider
2022-5-19
Try something like this
f = 1:500;
Q = randn(115,500);
idx = 1:100; % Choose Specific Columns
figure
plot(f(idx), Q(:,idx))
grid
.
5 个评论
Star Strider
2022-5-19
Try this —
f = 1:500;
Q = randn(115,500);
figure
hold on
for k = 1:100:500
plot(Q(:,k), 'DisplayName',sprintf('f = %d',f(k)))
end
hold off
grid
legend('Location','best')
.
Image Analyst
2022-5-19
@Nisar Ahmed you keep forgetting to attach your data in a .mat file with the paperclip icon. That would help.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Annotations 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!