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

2 visualizaciones (últimos 30 días)
Disheng Wu
Disheng Wu el 12 de Mzo. de 2022
Respondida: Karanjot el 6 de Oct. de 2023
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.

Respuestas (1)

Karanjot
Karanjot el 6 de Oct. de 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!

Categorías

Más información sobre Simulink en Help Center y File Exchange.

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by