plot(X(1:10:end),Y(2,1:10:end)')
Matrix, vector, plot, combination
2 次查看(过去 30 天)
显示 更早的评论
I have this little code: x=(1:1:50); X=x'; Y=[101:1:150;151:1:200;]; yy=Y' plot(X, yy(:,1),'-or'); hold on plot(X(:,1)(1:10:end), yy(:,2)(1:10:end), 'or');
the last line 'plot(X(:,1)(1:10:end), yy(:,2)(1:10:end), 'or'); is not working of course it is possible to do like aaa=yy(:,2) and the new plot(X(:,1)(1:10:end), aaa(1:10:end), 'or'); is working fine but my question is if exist a solution without doing this.
0 个评论
回答(1 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Matrix Indexing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!