Inplace

버전 1.0.0.0 (56.9 KB) 작성자: David Gleich
Allows Matlab variables to be passed by reference instead of by value allowing inplace modification.
다운로드 수: 1.5K
업데이트 날짜: 2006/6/6

라이선스 없음

Inplace is a Matlab package for working with matrices and vectors that are passed by reference instead of by value. This package allows variables to functions to be modified inplace. Previously, this behavior was not possible in Matlab.

To install, see the installation section of the documentation page: http://www.stanford.edu/~dgleich/programs/inplace/

It provides two classes, ipdouble and ipint32 (inplace double and inplace int32) that wrap Matlab's double and int32 matrices and vectors. The idea behind the package is simply to provide a way to modified arguments to a function directly without the necessity of returning the result and the hence, eliminating a copy required.

Example:
function a=func1(a)
a(1) = a(1)+1;
function func2(ipd)
ipd(1) = ipd(1)+1;
a = ones(5,1);
ipd = ipdouble(a);
a = func1(a);
func2(ipd); % accomplishes the same result without the copy at the end of the function.

인용 양식

David Gleich (2024). Inplace (https://www.mathworks.com/matlabcentral/fileexchange/11290-inplace), MATLAB Central File Exchange. 검색됨 .

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

Community Treasure Hunt

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

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