How can I add column with for loop

Hi everyone
I have this vector
url = {'nam1', 'nam2', 'nam3','nam5', 'name5', 'nam6'};
And I need to do a for loop to add to another 1x6 matriz name by name, I have tried the nexy code
for i = length(xsl)
xsl(:,i)=url;
end
but it return a 6x6 cell array and that is not what Im looking for, can anyone help me?
Thanks

1 comentario

Jan
Jan el 26 de Dic. de 2020
What is the wanted output? What about:
xsl = cat(2, url{:})

Iniciar sesión para comentar.

Respuestas (1)

Ameer Hamza
Ameer Hamza el 26 de Dic. de 2020
The question is not clear. Are you looking for something like this
url = {'nam1', 'nam2', 'nam3','nam5', 'name5', 'nam6'};
xsl = cell(1,6);
for i = length(xsl)
xsl(:,i)=url(i);
end

Categorías

Más información sobre Loops and Conditional Statements en Centro de ayuda y File Exchange.

Preguntada:

el 26 de Dic. de 2020

Comentada:

Jan
el 26 de Dic. de 2020

Community Treasure Hunt

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

Start Hunting!

Translated by