how to import data of workspace to tsv file in cst software?
20 次查看(过去 30 天)
显示 更早的评论
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 个)
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 the ”writematrix” 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!
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Data Import and Analysis 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!