How to use griddata in simulink's matlab function block?
13 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
manoj saladi
il 28 Apr 2019
Commentato: Walter Roberson
il 30 Apr 2019
Hi,
I want to use griddata in simulink's matlab function block. But when I do this I saw error statements in Simulink as shown below
- The function 'griddata' is not supported for standalone code generation. See the documentation for coder.extrinsic to learn how you can use this function in simulation.
Can anyone tell me what would be the problem
Thank you,
Manoj.
0 Commenti
Risposta accettata
Walter Roberson
il 28 Apr 2019
You can turn all acceleration off so that it does not attempt to generate code.
You can turn acceleration to the next lowest level, and put the line
coder.extrinsic('griddata');
in your code near the top. Code will be generated and will be able to call into matlab.
For any higher level of acceleration you would need to rewrite the code to not call griddata.
4 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Simulink Functions in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!