bsxops

バージョン 1.3.0.0 (77.4 KB) 作成者: Bruno Luong
Force MATLAB operators to behave BSXFUN-like
ダウンロード: 2.4K
更新 2009/6/13

ライセンスの表示

Force MATLAB operators to behave BSXFUN-like, i.e. operate multi-dimensional array with automatic expansion. Here is an example:

>> bsxops(1) % Activate the bsxops mode

>> (1:3) + (4:5)'.*reshape([10 11],[1 1 2])
ans(:,:,1) =

41 42 43
51 52 53

ans(:,:,2) =

45 46 47
56 57 58

>> bsxops(0) % Compatible mode
>> (1:3) + (4:5)'.*reshape([10 11],[1 1 2])
??? Error using ==> times
Number of array dimensions must match for binary array op.

引用

Bruno Luong (2024). bsxops (https://www.mathworks.com/matlabcentral/fileexchange/23821-bsxops), MATLAB Central File Exchange. 取得済み .

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

ヒントを与えたファイル: peterson-tim-j/Catchment_Resilience_Model, Embiggen

Community Treasure Hunt

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

Start Hunting!

bsxops/

bsxops/classops/@char/

bsxops/classops/@double/

bsxops/classops/@int16/

bsxops/classops/@int32/

bsxops/classops/@int64/

bsxops/classops/@int8/

bsxops/classops/@logical/

bsxops/classops/@single/

bsxops/classops/@uint16/

bsxops/classops/@uint32/

bsxops/classops/@uint64/

bsxops/classops/@uint8/

バージョン 公開済み リリース ノート
1.3.0.0

Direct use (not overloaded): Explicit bsx (sub)classes objects can be created and used. Subclasses works on Matlab versions that support Object Oriented Programing (OOP), i.e., 2008A onward.

Overloading bsxops is still working on previous Matlab.

1.2.0.0

Correct BUG min/max (two-output call)

1.0.0.0