How can you use coneplot to plot a single cone in a specific direction?
8 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Laurence hutton-smith
am 2 Jun. 2015
Beantwortet: Nuno
am 5 Jun. 2015
I am having trouble understanding the syntax of coneplot, I would like to use it to plot a single cone, in a specific direction.
For example i'd like be to place cone pointing in the direction of [-1,1,0] at [1,1,1].
Very much appreciate any help!
0 Kommentare
Akzeptierte Antwort
Star Strider
am 2 Jun. 2015
The coneplot function is a velocity plot.
If you want to plot a single cone, this will get you started:
N = 10;
r = linspace(0, 1, N);
[X,Y,Z] = cylinder(r, N);
figure(1)
h = surf(X, Y, Z);
axis square
rotate(h, [-1 1 0], 90);
I don’t know exactly what you want to do, so you will have to experiment with this. Other functions to consider are cart2sph and sph2cart to produce the rotation you want.
4 Kommentare
Weitere Antworten (1)
Siehe auch
Kategorien
Mehr zu Surface and Mesh Plots finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!