a matrix of strings

4 vues (au cours des 30 derniers jours)
som
som le 30 Jan 2012
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,

Réponse acceptée

Andrei Bobrov
Andrei Bobrov le 30 Jan 2012
use cell array
b = {'ok' 'no'}
a = b([1;2;1]*ones(1,3))

Plus de réponses (0)

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by