Clear Filters
Clear Filters

Define Pointer in Bus (structure)

7 views (last 30 days)
Karthikeyan S
Karthikeyan S on 6 Nov 2023
Answered: Benjamin Thompson on 21 Jan 2024
Hi,
How to implement the below structure in simulink
typedef struct{
int a;
int *b;
int *c;
}

Answers (1)

Benjamin Thompson
Benjamin Thompson on 21 Jan 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.

Categories

Find more on Simulink Functions in Help Center and File Exchange

Products


Release

R2022b

Community Treasure Hunt

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

Start Hunting!