Is there any way to change an array output to display a word or phrase?

1 回表示 (過去 30 日間)
MK96
MK96 2016 年 11 月 9 日
編集済み: MK96 2017 年 3 月 26 日
I am simulating a random 4x1 array of 1s and -1s;

採用された回答

Adam
Adam 2016 年 11 月 9 日
jStr = repmat( { 'Buy' }, numel( j ), 1 );
jStr( j == -1 ) = { 'Sell' };
I'm sure there are neater ways, but that should work.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLogical についてさらに検索

タグ

製品

Community Treasure Hunt

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

Start Hunting!

Translated by