how to create a table in Matlab ?
Mostrar comentarios más antiguos
I have Error L1,L2 and Linf between exacte solution and numerique solution of PDE for differents alpha and dt values in Matlab code.
I went to create a table has a muliple ligne, like that
alpha dt Error L^1 Error L^2 Error L^inf
------------- ------ -------------- ----------- -----------
1.0 0.05 ? ? ?
0.8 0.05 ? ? ?
0.5 0.05 ? ? ?
0.2 0.05 ? ? ?
Respuesta aceptada
Más respuestas (1)
Steven Lord
el 28 de Jul. de 2020
0 votos
In release R2016b (the release with which this answer was marked) table variable names must be valid MATLAB identifiers, which means neither spaces nor carets (^) are allowed. This restriction was removed in release R2019b so if you want to use those variable names you will need to upgrade to release R2019b or later.
Categorías
Más información sobre Downloads 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!