a matrix of strings

Hi all
I want to make a 3-by-3 matrix with the elements of strings.
for example: a=[ok ok ok; no no no ;ok ok ok ];
How can I do it?
thanks,

 採用された回答

Andrei Bobrov
Andrei Bobrov 2012 年 1 月 30 日

0 投票

use cell array
b = {'ok' 'no'}
a = b([1;2;1]*ones(1,3))

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeCharacters and Strings についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by