How i can map data axis (x,y) ->(10x10) area to a large (100x100) area?
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
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.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/153547/image.png)
0 Commenti
Risposte (1)
Stephen23
il 25 Gen 2016
Modificato: Stephen23
il 27 Gen 2016
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 Commenti
Stephen23
il 27 Gen 2016
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.
Vedere anche
Categorie
Scopri di più su Annotations in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!