フィルターのクリア

How to save strings in a loop into an array?

19 ビュー (過去 30 日間)
Gunay Gazaloglu
Gunay Gazaloglu 2021 年 4 月 3 日
コメント済み: Gunay Gazaloglu 2021 年 4 月 3 日
In this case there are 200 wind directions such NNW,NE,WNW....However,I couldnt save them into a single string array.How can I list them as XXX,XXX...

採用された回答

Abdolkarim Mohammadi
Abdolkarim Mohammadi 2021 年 4 月 3 日
You should first initialize the direction vector:
direction = strings (1, 200);
Then assign a value to a certain element of direction in each loop iteration:
direction (i) = "NE";

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLoops and Conditional Statements についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by