Outer Operation

버전 1.0.0.0 (707 Bytes) 작성자: Murphy O'Brien
e.g. Outer Product, Outer Sum, Outer Equals etc...
다운로드 수: 1.5K
업데이트 날짜: 2007/6/1

라이선스 없음

Calculates resultant matrix when the OPERATOR is applied to all combinations of the elements of vector A and the elements of vector B e.g. the outer product of A and B is outerop(A,B,'*'), the outer sum of A and B is outerop(A,B,'+')

If OPERATOR is omitted '+' is assumed

This function is equivalent to the APL language's circle.dot operation. e.g. in APL Ao.*B is the outer product of A and B % and Ao.+B is the outer sum.

Ideally, it would work on matrices but in practice
I've only ever needed to use it with vectors.

인용 양식

Murphy O'Brien (2024). Outer Operation (https://www.mathworks.com/matlabcentral/fileexchange/8370-outer-operation), MATLAB Central File Exchange. 검색됨 .

MATLAB 릴리스 호환 정보
개발 환경: R14
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
카테고리
Help CenterMATLAB Answers에서 Data Distribution Plots에 대해 자세히 알아보기

Community Treasure Hunt

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

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

Removed comaptibility with pre R14 releases becuase TMW have changed the way they reort version numbers. Made + the default operation.