Azzera filtri
Azzera filtri

Plotting the equation of a plane

10 visualizzazioni (ultimi 30 giorni)
Nishant Nain
Nishant Nain il 5 Ott 2011
How do I plot the equation of the given plane after finding the system of equations to determine c1,c2,c3- c1(x) + c2(y) + c3 = z, c1,c2, and c3 are constants. I solved the system of equations and got c1,c2,c3. How do I plot the equation for 3 given points (x1,y1,z1), (x2,y2,z2), (x3,y3,z3)? Can't figure out how to use Plot3 command on this one :/

Risposte (2)

Fangjun Jiang
Fangjun Jiang il 6 Ott 2011
patch([x1,x2,x3],[y1,y2,y3],[z1,z2,z3],'green');
view(3);

Walter Roberson
Walter Roberson il 6 Ott 2011
You cannot draw planes in MATLAB. Planes are infinitely thin entities that extend infinitely in two directions. MATLAB cannot draw anything thinner than a single pixel, and cannot draw anything infinite.
If you want to draw a portion of a plane, consider using patch()

Categorie

Scopri di più su 2-D and 3-D Plots in Help Center e File Exchange

Tag

Prodotti

Community Treasure Hunt

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

Start Hunting!

Translated by