Info
此问题已关闭。 请重新打开它进行编辑或回答。
1-d array plotted with imagesc shown as 2-d
1 次查看(过去 30 天)
显示 更早的评论
Hello,
I want to print an 1-d array lets say 1:10 with imagesc and I want the resulting plot to be an 1-d array as well.
But when for example I run
imagesc(1:10)
I get the following plot:
I would actually want the columns (the y-axis) to collapse in one square, namely:
I used for the latter graph
set(gca,'dataAspectRatio',[1 1 1])
but this also makes the colorbar small.
How can I do that have the latter figure, but with a bigger (in height) colorbar.
Thank you in advance
2 个评论
KALYAN ACHARJYA
2020-6-27
编辑:KALYAN ACHARJYA
2020-6-27
Plot is 2 dimentional or more. What does 1 D plot mean? Can you share some pictorial image. try with bar? In imagesc, also no variation on y axis, only in x axis, right?
回答(1 个)
Aditya Verma
2020-6-27
编辑:Aditya Verma
2020-6-27
You can change the size of the current figure (gcf) using the position propery:
imagesc(1:10);
set(gcf,'position',[0, 0, 500, 50]);
yticks([0 1]);
1 个评论
此问题已关闭。
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!