How can I find the surface normal of a 8 by 3 matrix?

1 回表示 (過去 30 日間)
Henry Canova
Henry Canova 2019 年 11 月 20 日
回答済み: darova 2019 年 11 月 20 日
I am attempting to find the surface normal of a 8 by 3 matrix in matlab. The matrix is
x = [0,228.6,-228.6,0,-114.3,114.3,114.3,-114.3];
y = [514.35,285.75,285.75,57.15,101.6,101.6,400.05,400.05];
z = [1873,1873,1909,1903,1909,1887,1869,1895];

回答 (1 件)

darova
darova 2019 年 11 月 20 日
  • Use griddata to create a surface
  • Use surfnorm to find normal vectors
[nx,ny,nz] = surfnorm(x,y,z);
surf(x,y,z)
hold on
quiver3(x,y,z,nx,ny,nz)
hold off

カテゴリ

Help Center および File ExchangeLighting, Transparency, and Shading についてさらに検索

タグ

製品

Community Treasure Hunt

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

Start Hunting!

Translated by