Define Pointer in Bus (structure)
5 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Hi,
How to implement the below structure in simulink
typedef struct{
int a;
int *b;
int *c;
}
0 Commenti
Risposte (1)
Benjamin Thompson
il 21 Gen 2024
Simulink busses cannot use pointers or references. Can you use an array of integers?
int b[10];
Simulink must know the size of the bus in memory so that a signal of this bus type can be connected betwee blocks.
0 Commenti
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!