Risposto
Single-Instance vs Multi-Instance Embedded Coder?
For single instance the generated code will use global data to hold state and parameter information. For multiple instance, st...

circa 6 anni fa | 1

| accettato

Risposto
Motor Control Blockset examples: Using variant source block
Those are functions, not variables. They are p-coded M-Files that are shipped with the example. Type the following to see wher...

circa 6 anni fa | 1

| accettato

Risposto
How to check files in a specified directory through Simulink?
As long as you don't need to generate C code from your SImulink model, use the coder.extrinsic function to notify Simulink that ...

circa 6 anni fa | 1

Risposto
Custom data types for S-function parameters
The easiest way to do this is to use the legacy_code tool to create the s-function for you. You will have to create a dummy c-f...

circa 6 anni fa | 0

| accettato

Risposto
Bus communication between charts in Stateflow
Simulink buses become structures in Stateflow. This link expains how a bus in a Simulink model becomes a structure in stateflow...

circa 6 anni fa | 0

Risposto
How can I stop the recompile of the model after first run to quicken the simulation time ?
make the parameters for INputX and InputY to be tunable workspace parameters. https://www.mathworks.com/help/xpc/ug/tuning-bloc...

circa 6 anni fa | 0

Risposto
How to get all input signal names connected to my simulink block exported in excel file?
Here is one approach: Write MATLAB code that: use find_system() command to get list of all input ports at top level of model...

circa 6 anni fa | 0

Risposto
Simulink: Access bus element properties
Here is one approach that might work. It requires some knowledge of block masking. Create a subsystem. Inside the subsystem...

circa 6 anni fa | 0

| accettato

Risposto
S-Function does not exist
Make sure that the .m files are in the MATLAB current working directory or on the MATLAB path.

circa 6 anni fa | 0

Risposto
S-function for static library
The library you built in Code COmposer studio is for a TI processor. S-Functions are built to run on Windows ( or LInux) and th...

circa 6 anni fa | 0

| accettato

Risposto
How to call C custom variable or constant in Simulink Model
not sure what you mean by "call", but one solution would be to put the variable inside a C function that simply returns the cons...

circa 6 anni fa | 0

Risposto
To worspace not showing
To Workspace should work in rapid accel mode. Does TIME appear in the workspace? Does your data appear on workspace in norma...

circa 6 anni fa | 0

Risposto
Why I get an error when generating a cell array as an output of a simulink function?
First, it looks like you ahve a typo... should "Counter" be "count"? But that isn't the reason for the error. I think the prob...

circa 6 anni fa | 0

Risposto
Removal of RT_MODEL variables in code generation
Look in TEST.h. What is in the data structure RT_MODEL_TEST? If there is an error_status variable, you can disable via this co...

circa 6 anni fa | 2

| accettato

Risposto
Use Mfile's user defined function in the Simulink's Matlab Function Block.
Your function isn't named RhosatLiq, it is named fcn. Change it to be : function RSL = RhosatLiq(Tsat) %Calculate the Saturat...

circa 6 anni fa | 0

Risposto
Errors while building mex
I believe the 4 missing symbols are functions normally provided by the AUTOSAR RTE. Simulink and Embedded coder do not generate...

circa 6 anni fa | 0

Risposto
Dimension Mismatch between Simulink Bus and Calculation Results
The easiest approach is to set the variable that holds the result to be a fixed length vector with a length equal to the larges...

circa 6 anni fa | 0

| accettato

Risposto
Why have some bus signals wrong datatypes?
Did you specify a Simulink Bus in the Bus Creator dialog? If so, then the signals feeding the bus creator must match the types ...

circa 6 anni fa | 0

Risposto
Global Simulink static/constant inside Matlab function
If you add an argument to your MATLAB function and mark it as a parameter. Simulink will then look for this parameter in the MA...

oltre 6 anni fa | 0

Risposto
Running Matlab simulation from a C++ code
Option 1: Modify your C++ code so that it writes the data to a comma delimited file, where the first column is the simulation t...

oltre 6 anni fa | 2

Risposto
How can I initialize internal variable of s-function every simulation?
Add code to the mdlStart() or mdlInitialize() functions in the SFunctionto reset state variables.

oltre 6 anni fa | 0

| accettato

Risposto
Simulink Code Generation - Variable names changes of MATLAB function blocks in C++ generated code
Try adjusting the "Loop unrolling threshold" to 0 or 1. What you are encountering is an optimization. It is usually more effic...

oltre 6 anni fa | 0

| accettato

Risposto
From generated code (Simulink Embedded coder) to Simulink model, for verification
Put the Simulink model in Software In the Loop Mode(SIL). When this is done, Simulink will automatically replace the Simulink m...

oltre 6 anni fa | 0

Risolto


Knight's Tour Checker
Given a matrix a, determine whether or not a legal <http://en.wikipedia.org/wiki/Knight's_tour knight's tour> is present. The kn...

oltre 6 anni fa

Risolto


Find the two most distant points
Given a collection of points, return the indices of the rows that contain the two points most distant from one another. The inpu...

oltre 6 anni fa

Risolto


QWERTY coordinates
Given a lowercase letter or a digit as input, return the row where that letter appears on a <http://en.wikipedia.org/wiki/Keyboa...

oltre 6 anni fa

Risposto
How can I group a number of similar Simulink Outports so that Embedded Coder will define them as an array of variables in the resultant C code?
As long as all signals are of the same type, you can merge them together into a vector using the vector concatenate block. https...

oltre 6 anni fa | 0

| accettato

Risposto
How to pause signal at specific time for specific time?
Use the SImulink Clock block to get the current simulation time. https://www.mathworks.com/help/simulink/slref/clock.html and t...

oltre 6 anni fa | 0

| accettato

Risposto
Simulink Project ignore files and folders
right mouse click on the file/folder and select "Remove from Project" https://www.mathworks.com/help/matlab/matlab_prog/manag...

oltre 6 anni fa | 1

Risposto
How can I SEND midi commands from within Simulink?
The audio toolbox comes with Simulink blocks for midi send/receive. https://www.mathworks.com/help/audio/examples/using-a-midi-...

oltre 6 anni fa | 0

Carica altro