Plane Perpendicualr to an axis
조회 수: 1(최근 30일)
표시 이전 댓글
Hey, how do I plot plane ortogonal to an an axis, in a 3D system.
For example, a plane that is defined by
.

채택된 답변
Shraddha Jain
2020년 12월 24일
Hi Manuel,
Given below is a sample code to plot a plane in 3-D defined at
,

[y z] = meshgrid(-1:0.1:1);
x = 3/2*ones(size(y));
surf(x,y,z)
댓글 수: 0
추가 답변(0개)
참고 항목
범주
Find more on Surface and Mesh Plots in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!