How to make the matrix first column name (character), second column content (number)
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
like this

0 comentarios
Respuesta aceptada
KSSV
el 30 de Mayo de 2022
For this the best suitable is table
varname = {'H1e' ; 'H2e' ;'H3e';'H4e';'H5e'} ;
val = [12; 0.58; 5; 7;3.98] ;
T = table(varname,val)
Más respuestas (0)
Ver también
Categorías
Más información sobre Logical en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!