Answered
How do I add character to a string in Simulink/Simevents?
Simulink doesn't like the fact that the variable s grows in length. Try something like this: ..... s = repat(' ',1,10...

meer dan een jaar ago | 0

Answered
How to create a .dll from a .slx?
This can be done with SImulink Coder + Embedded Coder and then use the ert_shrlib.tlc target file. https://www.mathworks.com/...

meer dan een jaar ago | 0

Answered
Logging state-transition from stateflow in generated code
You could enable this feature: https://www.mathworks.com/help/stateflow/ug/use-active-state-output.html And then log the signal...

meer dan een jaar ago | 0

Answered
How to call matlab class method from simulink
function y = fcn(u) dsp = t_dsp; y = dsp.calc_val(u); end

meer dan een jaar ago | 0

| accepted

Answered
Signal line lock icon
They mean that there is a data transfer between the source and destination of the line (as those blocks are mapped to different ...

meer dan een jaar ago | 0

Answered
Parsing Test Manager Information with Nested Folders
Try using this syntax to get all test cases in a nested folder structure: suite = TestSuite.fromFolder(pwd, 'IncludingSubfold...

bijna 2 jaar ago | 0

Answered
Instances interfere with each other in a simulation of subsystem reuse.
The most straightforward approach is to use model reference. I suggest trying this again and if you have problems post your mod...

bijna 2 jaar ago | 1

| accepted

Answered
How can I set a Block-parameter value that is a Simulink.Signal contained in a struct?
Try using Simulink.Parameter rather than Simuilnk.Signal.

bijna 2 jaar ago | 0

Answered
How can I write this block
The result of the multiply will be a 2x1 vector. Use the selector block to split off each of the two elements of the vector int...

bijna 2 jaar ago | 0

Answered
Does legacy code include static libraries?
You are correct that the static library is not needed for simulation because it is already linked into the mexw64 file. In orde...

bijna 2 jaar ago | 1

Answered
How to obtain DDS blockset data through maltab
You can use the logging features of Simulink to log data sent or received. You can also use the recording capabilities of the D...

bijna 2 jaar ago | 0

Answered
Error: Error occurred when checking data object usage for model
Since the top model VCU_App needs to interact with the child models using the same exported signals, you'll need to set owner of...

bijna 2 jaar ago | 0

Answered
How do I get a pointer to a structure for in/out parameters
A non-virtual bus can be used to hold the input signals and a second non-virtual bus for the output signals. This will result i...

bijna 2 jaar ago | 0

| accepted

Answered
Autocode step function naming
Use the code mappings capability of Embedded Coder to control the names of the step functions. See the end of this web page: ...

bijna 2 jaar ago | 0

| accepted

Answered
Matrix column extraction not working when using codegen
By default, code from MATLAB coder is column major Try changing to row-major as described here: https://www.mathworks.com/help...

bijna 2 jaar ago | 0

| accepted

Answered
mex file generation failed
See the bottom of this page for instructions on how to use a source code debugger on C Mex Functions. https://www.mathworks.c...

bijna 2 jaar ago | 0

Answered
Protect Code for Third Party Deployment
Another option would be to put your MATLAB code into a SImulink model via a MATLAB Function block and then distribute the Simuli...

ongeveer 2 jaar ago | 0

Answered
mex file generation failed
It looks like you are missing the .c file that contains the code for speed_control_initialize() and speed_control_step()

ongeveer 2 jaar ago | 0

| accepted

Answered
PX4 with Simulink
You do not need PX4 hardware. The PX4 support package includes a PX4 simulator that you can use in place of actual hardware T...

ongeveer 2 jaar ago | 0

Answered
C Union data type in Matlab/Simulink
You are correct that Simulink does not support unions. If you plan to use only one of the union-ed fields in your Simulink mode...

ongeveer 2 jaar ago | 0

Answered
How do I access STM32 HAL headers in Simulink S-Function-Builder?
What is the purpose of the C Coder you are trying to integrate with S-Function Builder? The purpose of S-Function builder is to...

ongeveer 2 jaar ago | 0

Answered
Simulink to DLL compatiable with TRNSYS
By default grt.tlc generates non-resuable code. In <model>.c you will note global variables for holding state information. To ...

ongeveer 2 jaar ago | 0

Answered
MATLAB cannot find CMake on Ubuntu 20.04
Is R2021b or R2022a an option? We began shipping cmake with MATLAB in those releases so there is no need to install cmake separ...

ongeveer 2 jaar ago | 0

Answered
Is Stateflow's temporal logic compatible with embedded coder?
Temporal logic in Stateflow is fully supported for code generation with Embedded Coder. Thanks. Mark.

ongeveer 2 jaar ago | 0

| accepted

Answered
app designer interface with simulink
This link provides steps for linking App Designer UI to Simulink: https://www.mathworks.com/matlabcentral/answers/1659870-app-d...

ongeveer 2 jaar ago | 0

Answered
Delete Specific Simulink Block in a Linked Subsystem using m-script (MATLAB)
You have 2 options. if you want to delete the block for all instances of the subsystem, the you should open the simulink libr...

ongeveer 2 jaar ago | 0

Answered
More efficient equivalent to while looping block in Simulink
You could try a MATLAB Function block and implement the logic in MATLAB.

ongeveer 2 jaar ago | 0

Answered
Two way communication between Simulink and Raspberry Pi
You can use the UDP block in Simulink to do this: https://www.mathworks.com/help/ecoder/ref/udpsend.html#:~:text=Embedded%20C...

ongeveer 2 jaar ago | 0

Answered
Is it possible to compile Matlab GUI(GUIDE) who uses a Simulink model to an .exe?
You can do this with Simulink Compiler and App Designer: https://www.mathworks.com/help/slcompiler/ug/deploy-a-simulation-wit...

ongeveer 2 jaar ago | 1

Answered
Size mismatch in Simulink for element wise multiplication
the problem is that the sizes of the matrices to the times() function are not the same. dot(x_mag,m_sup) is 1x2 while m_sup is ...

ongeveer 2 jaar ago | 0

| accepted

Load more