Borrar filtros
Borrar filtros

Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

About looping and array

2 visualizaciones (últimos 30 días)
Yoga Arviansyah
Yoga Arviansyah el 24 de Sept. de 2018
Cerrada: MATLAB Answer Bot el 20 de Ag. de 2021
For example A=(aa bb cc dd) and B=(aa bb xx yy zz) then i want to display like this (xx yy zz)
*A and B are string
How to display like that by using looping only...??

Respuestas (1)

KSSV
KSSV el 24 de Sept. de 2018
A= {'aa' 'bb' 'cc' 'dd'} ;
B={'aa' 'bb' 'xx' 'yy' 'zz'} ;
s = ['(' B{3},',',B{4},',',B{5},')']

La pregunta está cerrada.

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by