how to create a table containing character and integer values in matlab????
Mostrar comentarios más antiguos
how to create a table containing character and integer values in matlab????
Respuestas (1)
Guillaume
el 5 de Feb. de 2015
T = table(['M';'F';'M'],[45;32;34],...
{'NY';'CA';'MA'},logical([1;0;0]),...
'VariableNames',{'Gender' 'Age' 'State' 'Vote'})
1 comentario
Youssef Khmou
el 5 de Feb. de 2015
or use cell function
Categorías
Más información sobre Logical en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!