how to import data of workspace to tsv file in cst software?

13 ビュー (過去 30 日間)
FARHA KHAN
FARHA KHAN 2022 年 4 月 26 日
回答済み: Aditya 2023 年 11 月 22 日
I have a matrix of around 500 elements in my workspace of name position, I want to import this array of matrices in cst software how to do this?
  1 件のコメント
Michela Longhi
Michela Longhi 2022 年 7 月 25 日
Hi, how did you create a .tsv file ? thanks

サインインしてコメントする。

回答 (1 件)

Aditya
Aditya 2023 年 11 月 22 日
Hello Farha,
I understand you wants to export the position matrix from MATLAB to a TSV file for use in CST software.
You can accomplish this using thewritematrix function with specific parameters to format the file correctly. Here's how you can achieve it:
writematrix(position, 'position.tsv', 'Delimiter', 'tab', 'FileType', 'text');
This command will create a TSV file named position.tsv in your current MATLAB working directory, with tab-separated values that are compatible with CST Software.
For more information on the “writematrix function and its parameters, please refer to the MATLAB documentation:
Hope this helps!

カテゴリ

Help Center および File ExchangeData Import and Analysis についてさらに検索

製品


リリース

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by