iscoplanar.m

버전 1.1.0.0 (1.67 KB) 작성자: Brett Shoelson
Tests input points for coplanarity in 3-space.
다운로드 수: 3K
업데이트 날짜: 2014/11/10

라이선스 보기

Tests input points for coplanarity in N-dimensional space; optionally returns the rank of the input matrix.

SYNTAX:
COPL = iscoplanar(V)
(V is an M X N matrix of of vectors).
COPL = iscoplanar(V, TOLERANCE)
...Optionally, provide a scalar value of
TOLERANCE.
COPL = iscoplanar(X,Y,Z)
"Shortcut syntax" for testing coplanarity
in 3-space;
COPL = iscoplanar(X,Y,Z,TOLERANCE)
[COPL, RNK] = ...
Optionally, return the rank, RNK, of the
input matrix.

인용 양식

Brett Shoelson (2024). iscoplanar.m (https://www.mathworks.com/matlabcentral/fileexchange/46-iscoplanar-m), MATLAB Central File Exchange. 검색됨 .

MATLAB 릴리스 호환 정보
개발 환경: R13
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
카테고리
Help CenterMATLAB Answers에서 Morphological Operations에 대해 자세히 알아보기
태그 태그 추가
도움

줌: geom3d

Community Treasure Hunt

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

Start Hunting!
버전 게시됨 릴리스 정보
1.1.0.0

This is a complete (much-improved) rewrite of my previous |iscoplanar| function. This version considers the rank of the input matrix relative to the dimensionality of its space.

1.0.0.0

Fixes omission of absolute value in comparison with tolerance. Also, now uses determinants; new version is approximately 10x faster.