Filter löschen
Filter löschen

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

12 Ansichten (letzte 30 Tage)
FARHA KHAN
FARHA KHAN am 26 Apr. 2022
Beantwortet: Aditya am 22 Nov. 2023
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?

Antworten (1)

Aditya
Aditya am 22 Nov. 2023
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!

Kategorien

Mehr zu Data Import and Analysis finden Sie in Help Center und File Exchange

Produkte


Version

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by