How i can map data axis (x,y) ->(10x10) area to a large (100x100) area?

2 次查看(过去 30 天)
I have a data set in the range of (x[0 10], y[0 10]) so i want to plot this data in the area of 100x100 so that It can give a larger view of the data set. I want to expand this with respect to data ? how i can do this ? Need your guidance.

回答(1 个)

Stephen23
Stephen23 2016-1-25
编辑:Stephen23 2016-1-27
You don't need to change your data, just change the axes limits to zoom into the data that you want to see. Try something like this:
xlim([0,10])
ylim([0,10])
There are plenty of options, so read the documentation too:
EDIT: multiply the data by 10. This seems to be what the OP is wanting to do.
  5 个评论
Arsal15
Arsal15 2016-1-26
@Stephen Cobeldick, Well "limiting my plot to this axis mean i have my data in [0 10] in both axis but I want it should give me a view in [0 100] in both axis. Well the setting of limits work but it is plotting my graph in [0 10] range in both axis. But i want to expand it to [0 100] area in both axis.
if true
colorstring = 'mbybgkkcrr';
figure;
hold on;
for nodeIndex = 1:numNodes
plot( nodep(nodeIndex).x(1:end), nodep(nodeIndex).y(1:end),'*',
'color',colorstring(nodeIndex));
text(nodep(nodeIndex).x(1), nodep(nodeIndex). y(1), 'SP','Color','r' ,'FontSize',20);
text(nodep(nodeIndex).x(end),nodep(nodeIndex).y(end), 'EP','Color','r','FontSize',20);
set(gcf, 'Units', 'Normalized', 'OuterPosition', [0 0 1 1]);
xlim ([0 10]); ylim ([0 10]);
end
end
@Image Analyst It plot in so that the data in 0-10 range get the view of 0-100 range.
It will now take up the same real estate on my screen that the old 0-10 range did before. Is
that not the case?
Stephen23
Stephen23 2016-1-27
The obvious answer is to multiply your X and Y values by 10. But it still seems rather bizarre to prefer to change the data rather than simply zoom the axes.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Data Distribution Plots 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by