Effacer les filtres
Effacer les filtres

How to export an array, whose outputsize is variable in simulink

2 vues (au cours des 30 derniers jours)
Disheng Wu
Disheng Wu le 12 Mar 2022
Hello,
I want to export an array, whose original outputsize cannot be determined in simulink.
For example in Simulink,
Function [c,d] = getOutputSizeImpl(~)
c = [? 4];
d = [? 4];
Is there any way to export this array?
Thanks a lot.

Réponses (1)

Karanjot
Karanjot le 6 Oct 2023
Hi Disheng,
I understand that you would like to know how to export an array with a variable output size in Simulink. Please elaborate on the desirable format for export. In the meanwhile, the process to write numeric and text data to a spreadsheet file is as follows:
writecell(C,filename)
The above command, when used in a MATLAB function block, writes to a file with the name and extension specified by filename. ‘writecell’ determines the file format based on the specified extension. The extension must be one of the following:
  • .txt, .dat, or .csv for delimited text files
  • .xls, .xlsm, or .xlsx for Excel spreadsheet files.
If the array is populated, Simulink will export the array irrespective of the size.
To learn more about exporting an array, please refer to the below documentation:
I hope this helps!

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by