nones

バージョン 1.2 (1.91 KB) 作成者: Jos (10584)
fill each row/column with a certain number of ones (N-ONES)
ダウンロード: 1.8K
更新 2019/2/18

ライセンスの表示

NONES - fill each row/column with a certain number of ones (N-ONES)
A = NONES(V) creates a logical array A, in which each row/column
starts with zero or more TRUE entries followed by zero or more FALSE
entries, as specified by the elements of the vector V.

Examples
nones([1 0 4]) % ->
1 0 1
0 0 1
0 0 1
0 0 1

a = nones([-2 3 2 7].') ;
b = cumsum(a,2) ;
b(~a) = 0 % ->
0 0 0 0 0 0 0
1 2 3 0 0 0 0
1 2 0 0 0 0 0
1 2 3 4 5 6 7

引用

Jos (10584) (2024). nones (https://www.mathworks.com/matlabcentral/fileexchange/10622-nones), MATLAB Central File Exchange. 取得済み .

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

ヒントを与えたファイル: padcatcell, Industrial Power Control By Cycle Switching

Community Treasure Hunt

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

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

modernised, add image

1.0.0.0

version 1.1 (may 2006) corrected small error in help text (thank to MF)