Community Profile

photo

Ludo Houben


Last seen: Today Actif depuis 2022

Followers: 0   Following: 0

Programming Languages:
MATLAB
Spoken Languages:
English, German
Pronouns:
He/him

Statistiques

  • Thankful Level 3
  • First Answer

Afficher les badges

Feeds

Afficher par

A répondu
Simulink: Model referencing of MATLAB System. Parameters not set in setupImpl
Hi I have the same 'challenge'. I would like to use a loaded struct for the parameterization of a function, but it is vital ...

4 mois il y a | 0

Question


How to get 'gcb' information including a 'for each' index
Hi All I have a function that has a property 'sParInstanceName'. This variable is updated on starting with the callback functio...

4 mois il y a | 1 réponse | 0

1

réponse

Question


How to configure set_param() per instance for arrays
I have a function 'deep' within a model that is called as an array. Each instance of this function needs a different value for i...

4 mois il y a | 1 réponse | 0

1

réponse

A répondu
How to connect a substruct of an array to an inport of a 'for each' block
It looks that my preferred way of working is not supported within Simulink. So I now constructed it like this: It looks lik...

5 mois il y a | 0

| A accepté

Question


How to connect a substruct of an array to an inport of a 'for each' block
Hi all, next challenge From a PLC I receive data in form of a 'struct in struct' principle which I want to use in the simulatio...

5 mois il y a | 1 réponse | 0

1

réponse

Question


How to move data from cells in a cell in a destinct column (importing CoDeSys variables)
Hi All I have a challenge of reading PLC (CoDeSys IEC 61131) variables from a text file and putting them into an array(:,4). He...

6 mois il y a | 1 réponse | 0

1

réponse

Question


How to get columns as 'struct' in timetable
Hi all, I'm 'playing' around with timetable for adding logdata to use in a simulink model but I'm strugling with the 'struct in...

6 mois il y a | 2 réponses | 0

2

réponses

Question


How to search for a index to a variable with known size
Hi All I'm still relative new to MATLAB and I'm struggeling a bit to find an index. Following info I have received from a 'wh...

6 mois il y a | 1 réponse | 0

1

réponse

A répondu
How to get the class instance 'calling' path
The following 'works' when simulink is running in code generation execution when creating a class % Create a property of the ty...

6 mois il y a | 0

| A accepté

A répondu
How to get the class instance 'calling' path
This is a simpeler solution if running simulink in interpreted execution sInstancePath = gcb; % Get instance path warni...

6 mois il y a | 0

Question


How to get the class instance 'calling' path
Hi all I'm working on a class and I have added an error() message to a part of the code. However within my model several instan...

6 mois il y a | 3 réponses | 0

3

réponses

Question


How to access methode from class
Hi all I'm new to Matlab/Simulink. See image below, how do I access a method from the instance 'fbTriggerBuffer' of the class '...

6 mois il y a | 1 réponse | 0

1

réponse

Question


Initialise property with simulink.bus information located in sldd
Hi all The code below is working as intended, however the 'ST_FB_TRIGGERBUFFER_DATARECORD' needs to be available in the base wo...

6 mois il y a | 1 réponse | 0

1

réponse

Question


How to set (check?) the 'inport' datatype for a 'Matlab system block' to a simulink.bus
Hi All When I create a subsystem, then I can set a fixed datatype "Bus: <busname>" for an 'inport' How to do this for a 'm...

7 mois il y a | 1 réponse | 0

1

réponse

A répondu
Simple class counter running each step
Ok found my mistake you need to call it as 'methode' step. Count.step(5)

8 mois il y a | 0

| A accepté

Question


Simple class counter running each step
I want to create a 'simple counter' class (so I understand how it works), that increases the count value every time it is called...

8 mois il y a | 1 réponse | 0

1

réponse

A répondu
SubSystem missing image in library (created with mask)
Found that the reference within the block is 'fixed'. So after renaming / relocating you have to recreate this reference. I don'...

8 mois il y a | 0

| A accepté

A répondu
Fixed 'simulink.bus' for property declaration
Finally got it to work :-) The array has now a fixed size of 2 records of the datatype ST_DATARECORD classdef myFunct < matl...

8 mois il y a | 0

| A accepté

Question


Fixed 'simulink.bus' for property declaration
Hi All I'm trying to create my first class and I'm struggeling to define my property as a fixed 'simulink.bus' type. I create...

9 mois il y a | 1 réponse | 0

1

réponse

A répondu
Execution order tab is not displayed
The Execution Order editor window is only displayed when the code is compilable.

9 mois il y a | 0

| A accepté

Question


Execution order tab is not displayed
Hi All I'm trying to get a new SubSytem for my library compiled, but I get '...are involved in the loop' errors. As the error p...

9 mois il y a | 1 réponse | 0

1

réponse

A répondu
Format position of inports and referenced subsytem naming in simulink
As mentioned the comment in Sahas his answer, a workaround is to create an 'empty' icon mask. In this way only the in-/outports ...

10 mois il y a | 0

Question


How to acces the mask 'Property Editor' when in 'Graphical' mode?
Hi All How to reach / were to find the 'Property Editor' when a SubSystem has a mask that is saved from within 'Graphical' mode...

10 mois il y a | 1 réponse | 0

1

réponse

Question


SubSystem missing image in library (created with mask)
Hi All Yesterday I succesfully created a 'mask' for a referenced SubSystem within a Library I'm trying to create. Today I want ...

10 mois il y a | 1 réponse | 0

1

réponse

A répondu
How to crop 1 inch
Hi Pizzaa Maybe this can help: https://nl.mathworks.com/help/images/crop-an-image.html https://nl.mathworks.com/help/images/c...

10 mois il y a | 0

Question


Format position of inports and referenced subsytem naming in simulink
Hi All I'm trying to create my own simulink blocks, and I was wondering how I can format the distance between the referenced su...

10 mois il y a | 2 réponses | 0

2

réponses

A répondu
Get min from group(s) of data within an array
Hi all The final solution was combining both answers from Jan and Chris. % Create table 'X' X = [2022 02 01 1 6; ... ...

plus d'un an il y a | 0

| A accepté

Question


Get min from group(s) of data within an array
Hi All As a newbie I'm struggeling with the following. I have created a subset of a data set into a 'value n' x 'value m' doub...

plus d'un an il y a | 3 réponses | 0

3

réponses