Answered
"The specified key is not present in this container" error when attempting to build a Simulink model with C Caller function blocks
The configuration should only refer to the .lib file. This is the only file needed for linking. Use double quotes around the ....

meer dan 3 jaar ago | 0

Answered
What approach to programming an ARM Cortex M7 on simulink?
Either can be used but I would recommend the C Caller block. For either approach, you will need to write the device driver in C...

meer dan 3 jaar ago | 0

Answered
Hardware specific Functions + Code Replacement + Embedded Coder
Rather than use the Code Replacement Library, a simpler approach would be to have two versions of function switch_Light(). One ...

meer dan 3 jaar ago | 0

| accepted

Answered
How to send data over tcp to remote server from a simulink model
The easiest way to do this is to use the UDP blocks in either the Instrument Control Toolbox or the Embedded Coder Toolbox. Oth...

meer dan 3 jaar ago | 0

| accepted

Answered
Enable Coverage metrics on a Simulink test suite from Matlab Script
https://www.mathworks.com/help/sltest/ref/sltest.testmanager.coveragesettings-class.html

meer dan 3 jaar ago | 0

Answered
How to change model properties of a .slx simulink model using the MATLAB script
Model configuration settings can be controlled from MATLAB code using the get_param() and set_param() functions. Help will tell...

meer dan 3 jaar ago | 0

| accepted

Answered
From Simulink to C-Code and back to Simulink
"SIL" mode addresses this use case and eliminates all of the uncessary steps you are trying to follow. SIL mode allows you to r...

meer dan 3 jaar ago | 0

| accepted

Answered
Executing callbacks of custom simulink blocks in a subsystem reference
I believe you need to put a mask on the subsystem reference and use this mask to pass values for each instance down into your cu...

meer dan 3 jaar ago | 0

Answered
PWork loses data in S-function
st1 is an autmomatic variable, so its memory location can get reused after leaving mdlStart(). YOu need to allocation memory fo...

meer dan 3 jaar ago | 0

| accepted

Answered
How to measure Round Trip Time in Simulink using S-Functions and Time Stamps?
Trhee suggestions Don't bother writing time to file in s-function. Use simulink logging capabilities to log the outputs from t...

meer dan 3 jaar ago | 0

Answered
High resolution TIFF images from Simulink Scope
Open the scope and from the File menu, select "Print to Figure". This will create a MATLAB figure of your scope. Then, from th...

meer dan 3 jaar ago | 0

Answered
How can I change a parameter in a Simulink block using code setVariable?
Since the variables you are trying to change are in the Model Workspace, you need to add an optional argument specifying this. ...

meer dan 3 jaar ago | 1

| accepted

Answered
"S-Function does not exist" but is clearly in the Matlab path!
Do you have a file named sfun_name.mexw64? Simulink needs the s-function to be compiled into a mexw64( which is a specialzed DL...

meer dan 3 jaar ago | 1

| accepted

Answered
Find out which addons are used by Simulink project
You used both the term "toolbox" and "addon" in your description. For Toolboxes, which are licensed products, type the followin...

meer dan 3 jaar ago | 0

Answered
FMU Import Script for Simulink
If you set the FMUName property then you should not get prompted. YOu can do this either by adding additional arguments to the ...

meer dan 3 jaar ago | 0

| accepted

Answered
How to connect bus signal with different data size using multiport switch?
I made a number of changes to your model, most importably was to remove mux blocks. Mux blocks should not be used. Use Vector/...

meer dan 3 jaar ago | 0

| accepted

Answered
How to connect bus signal with different data size using multiport switch?
On the Multi-port switch block, on the Signal Attirbutes tab, check the box "Allow different data input sizes".

meer dan 3 jaar ago | 0

Answered
How to Suppress Mixed Expressions for Pooled Parameter in generated Autocode?
Change the "Shared code placement" option to "Shared location" and then the option for "Generate shared constants" will no longe...

meer dan 3 jaar ago | 0

Answered
Problem synchronization between a Simulink publisher and subscriber
Simulink does not simulate in real-time, so there will always be variation in the execution speeds of Simulink models. You can ...

meer dan 3 jaar ago | 0

Answered
sendmail function in simulink
You should be able to do this inside a MATLAB Function block that is placed into the Simulink model. You will have to designate...

meer dan 3 jaar ago | 0

Answered
Time dependent variable during simulation
The sim() command doesn't return until the simulation is complete. An easy way to accomplish what you want to do is to use the ...

meer dan 3 jaar ago | 0

Answered
Communicate Signals Between Two Simulations on the Same Computer?
The UDP/TCP blocks can be used to share data between two different Simulink models running in different MATLAB instances on the ...

meer dan 3 jaar ago | 0

Answered
Constant block only outputs a single data point
What is the sample time for the constant block? The default is "inf" which indicates constant sample time. Change this to -1 o...

meer dan 3 jaar ago | 0

Answered
Unkown error in stateflow simulink
It looks like you are attempting to access P1 and P2 in multiple state machines. You have defined P1 and P2 as global variables...

meer dan 3 jaar ago | 0

| accepted

Answered
How to set default value for instance parameters/Simulink.Parameter?
You will need to configure the parameter as a model argument and then specify values for each isntance of the model block. It i...

meer dan 3 jaar ago | 1

Answered
How do I make a device driver block that outputs data from a global array?
You will need create the matrix in your MATLAB function and then pass it to your C Function as an argument, encapsultated in teh...

meer dan 3 jaar ago | 0

Answered
Accessing MATLAB System workspace while running a Simulink model on external mode
The best way to debug a Simulink model while it is running on the target system is to put the Simulink model in External mode an...

bijna 4 jaar ago | 0

Answered
Pacing option not active in external mode
When running external mode, the code from the Simulink model is running in real-time using target OS timers/threads. It is not ...

bijna 4 jaar ago | 0

Answered
I want to write a MATLAB script that tests all test suites in Simulink with extension .mldatx?
https://www.mathworks.com/help/matlab/ref/matlab.unittest.testsuite.fromfolder.html

bijna 4 jaar ago | 0

Answered
Syntax error in simulink
The following variables need to be defined in the MATLAB workspace: I, g, b, m, l, M thetadot is missing a paren. It hsould ...

bijna 4 jaar ago | 0

Load more