Index in position 2 exceeds array bounds (must not exceed 1).
1 次查看(过去 30 天)
显示 更早的评论
gcf;
subplot(3,1,1)
plot(Y(:,1),Y(:,2))
title('source current')
ylabel('iS in A')
subplot(3,1,2)
plot(Y(:,1),Y(:,3))
title('capacitor voltage')
ylabel('vC in V')
subplot(3,1,3)
plot(Y(:,1),Y(:,4))
title('inductor current')
xlabel('time in sec.')
ylabel('iL in A')
Index in position 2 exceeds array bounds (must not exceed 1).
Error in (line 3)
plot(Y(:,1),Y(:,2))
2 个评论
回答(1 个)
Mahesh Taparia
2021-1-28
Hi
It seems Y is not defined correctly. Either it is a single column matrix or just a scalar. So assign the value correctly.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Two y-axis 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!