planenormvec

バージョン 1.0.0.0 (1.15 KB) 作成者: Yo Fukushima
Calculate the normal vector of a plane in 3D that contains three points.
ダウンロード: 1.7K
更新 2016/4/1

ライセンスの表示

VEC = PLANENORMVEC(PT1,PT2,PT3) calculats the normal vector of a plane that includes three points PT1, PT2, and PT3. When the plane is expressed as ax + by + cz = 1, VEC(1) = a, VEC(2) = b, VEC(3) = c. Points should be a 1 x 3 vector, specifying x, y and z values for each column.
(Example)
p1 = [3,4,5];
p2 = [8,-4,0];
p3 = [0,0,1];
vec = planenormvec(p1,p2,p3);

引用

Yo Fukushima (2024). planenormvec (https://www.mathworks.com/matlabcentral/fileexchange/7239-planenormvec), MATLAB Central File Exchange. 取得済み .

MATLAB リリースの互換性
作成: R11.1
すべてのリリースと互換性あり
プラットフォームの互換性
Windows macOS Linux
カテゴリ
Help Center および MATLAB AnswersLinear Algebra についてさらに検索
謝辞

ヒントを与えたファイル: threepoints2planez

Community Treasure Hunt

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

Start Hunting!
バージョン 公開済み リリース ノート
1.0.0.0

BSD License added.