Draw 1 hyperboloid with equation -0.2x^2 - 0.2y^2 +z^2 =1 with colormap jet
조회 수: 1 (최근 30일)
이전 댓글 표시
I want to make it very succinct, but it doesn't seem to work
댓글 수: 0
답변 (1개)
Davide Masiello
2023년 4월 13일
편집: Davide Masiello
2023년 4월 13일
[x,y] = meshgrid(linspace(-10,10,100));
z = sqrt(1+0.2*x.^2+0.2*y.^2);
Then you can plot it in many ways. Examples
figure(1)
contourf(x,y,z)
colormap(jet)
colorbar
axis equal
figure(2)
surf(x,y,z)
colormap(jet)
colorbar
figure(3)
surf(x,y,z,'EdgeColor','none'), hold on
surf(x,y,-z,'EdgeColor','none')
colormap(jet)
colorbar
axis equal
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Orange에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!