How to set radius limits using compass?
13 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I have a set of vector data with magnitudes between 1 and 1.08. Using compass, Matlab sets the default radius to between 0 and 1.5, making the differences between 1 and 1.08 indistinguishable. Using rlim does not work as compass uses a cartesian coordinate system. Is it possible to set the radius limits to between 1 and 1.1?
An example dataset: a = 1; b = 1.08; r = (b-a).*rand(50,1) + a; %magnitude
c = 0; d = 2*pi; direction = (d-c).*rand(50,1) + c;
[u,v] = pol2cart(direction,r); compass(u,v)
0 Kommentare
Antworten (1)
Prakhar Jain
am 1 Okt. 2018
Hello Matthew,
You can follow the below for the same -> how-to-change-the-axis-limits-and-remove-alter-the-ticks-and-labels-for-a-compass-polar-plot
0 Kommentare
Siehe auch
Kategorien
Mehr zu 2-D and 3-D Plots finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!