How to add 'NaN' at the beginning of a table?

4 ビュー (過去 30 日間)
Pawel Kaszynski
Pawel Kaszynski 2022 年 2 月 20 日
回答済み: Voss 2022 年 2 月 20 日
How to add 'NaN' at the beginning of a table (on top of 0.0094065)?
FO
__________
0.0094065
0.039276
0.019509
0.039404
0.058853
-0.064627
0.030579
-0.031437

採用された回答

Voss
Voss 2022 年 2 月 20 日
Here's one way:
t = table(randn(8,1),'VariableNames',{'F0'})
t = 8×1 table
F0 ________ 0.031008 -1.6363 0.25468 -0.62168 0.74535 -3.639 1.8741 -0.99434
t = [table(NaN,'VariableNames',{'F0'}); t]
t = 9×1 table
F0 ________ NaN 0.031008 -1.6363 0.25468 -0.62168 0.74535 -3.639 1.8741 -0.99434

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeTables についてさらに検索

タグ

製品


リリース

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by