Plane Perpendicualr to an axis
조회 수: 2 (최근 30일)
이전 댓글 표시
Hey, how do I plot plane ortogonal to an an axis, in a 3D system.
For example, a plane that is defined by .
댓글 수: 4
James Tursa
2020년 12월 21일
You want to graph a 3D plane superimposed on top of another image/plot? Take a slice of that plane through the other image/plot? Or ...?
채택된 답변
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개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Surface and Mesh Plots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!