필터 지우기
필터 지우기

how to create a table in Matlab ?

조회 수: 3 (최근 30일)
Yamina chbak
Yamina chbak 2020년 7월 28일
답변: Steven Lord 2020년 7월 28일
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 ? ? ?

채택된 답변

Jon
Jon 2020년 7월 28일
편집: Jon 2020년 7월 28일
You can do something like this
x = [1;0.8;0.5;0.2]
dt = [0.05;0.05; 0.05;0.05]
EL1 = [3; 4; 5; 6 ]
t = table(x,dt,EL1)
There are lots of options for defining a table, the above is a simple example of how to do it. Please type doc table on the command line to see all of the detailed possibilities.

추가 답변 (1개)

Steven Lord
Steven Lord 2020년 7월 28일
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.

카테고리

Help CenterFile Exchange에서 Eigenvalue Problems에 대해 자세히 알아보기

태그

제품


릴리스

R2016b

Community Treasure Hunt

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

Start Hunting!

Translated by