Borrar filtros
Borrar filtros

Output type definition for extrinsic function (polyxpoly) in Simulink

2 visualizaciones (últimos 30 días)
Hi,
I'm needing to use an extrinsic function in an embedded matlab block in simulink (polyxpoly).
My problem is that the output of this function is an x by 2 array where x varies. I am therefore unable to define the output type without getting an mxarray error.
How can I make use of this function in a simulink matlab function block?

Respuesta aceptada

Kaustubha Govind
Kaustubha Govind el 16 de Ag. de 2013
Editada: Kaustubha Govind el 16 de Ag. de 2013
Since the Embedded MATLAB block uses static memory allocation, it cannot handle variables that change size dynamically. What you can do is declare your output as variable-sized while specifying an upper bound for the size.
function y = myfun(x)
coder.varsize('y', [1024 2]); %x must never exceed 1024
coder.extrinsic('polyxpoly');
y = zeros(x, 2); %pre-declare the type and size of y
y = polyxpoly(x, other_args, ...);
Also, be sure to configure the output as variable-size on the Ports and Data Manager.
  1 comentario
Sharan Duggirala
Sharan Duggirala el 17 de Abr. de 2015
Hi,
During code generation, I keep getting the error -
' CODER.VARSIZE is not applicable to 'mxArray '. '
Has anyone encountered this/ know a way around this?
Here is a screenshot of the code generation error report :

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

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

Community Treasure Hunt

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

Start Hunting!

Translated by