Mark McBroom
Followers: 0 Following: 0
I am an Application Engineering Manager at MathWorks.
Feeds
답변 있음
Header files not generated
You are correct. Those files are not generated but rather are shipped with Simulink Coder/Embedded Coder.
Header files not generated
You are correct. Those files are not generated but rather are shipped with Simulink Coder/Embedded Coder.
3일 전 | 0
답변 있음
Is it possible to use Simulink's DDS BlockSet to communicate between two Simulink models on two computers?
You can use Simulink to exchange DDS messages from 2 or more different Simulink models using External mode. These Simuilnk mode...
Is it possible to use Simulink's DDS BlockSet to communicate between two Simulink models on two computers?
You can use Simulink to exchange DDS messages from 2 or more different Simulink models using External mode. These Simuilnk mode...
대략 2개월 전 | 0
| 수락됨
답변 있음
How to call a DLL sub-function in Simulink EML suitable for use in accelerated models & generated code
coder.ceval() is the approach to use for this. https://www.mathworks.com/help/simulink/ug/incorporate-c-code-using-a-matlab-fun...
How to call a DLL sub-function in Simulink EML suitable for use in accelerated models & generated code
coder.ceval() is the approach to use for this. https://www.mathworks.com/help/simulink/ug/incorporate-c-code-using-a-matlab-fun...
2개월 전 | 0
답변 있음
Solver library while converting from Simulink to C
The normal approach is to first select a solver that provides the best results when testing the model in simulation mode. You s...
Solver library while converting from Simulink to C
The normal approach is to first select a solver that provides the best results when testing the model in simulation mode. You s...
3개월 전 | 0
답변 있음
Configuring Embedded Coder to Generate Non-Static Initialize Method in C++ Code
It sounds like you are not using Embedded Coder ( ert.tlc ). Embedded Coder should generate the public methods Initialize(), st...
Configuring Embedded Coder to Generate Non-Static Initialize Method in C++ Code
It sounds like you are not using Embedded Coder ( ert.tlc ). Embedded Coder should generate the public methods Initialize(), st...
3개월 전 | 0
답변 있음
SIMULINK testing a model that has bus input and output ports
If you already have a Simulink.Bus defined, another approach is to place a constant block in the Simulink model, set its value t...
SIMULINK testing a model that has bus input and output ports
If you already have a Simulink.Bus defined, another approach is to place a constant block in the Simulink model, set its value t...
4개월 전 | 0
답변 있음
Codebeamer RMI - Matlab Simulink Integration Error
If you have followed the steps described below and continue to have issues, I suggest you contact Codebeamer. Codebeamer - Si...
Codebeamer RMI - Matlab Simulink Integration Error
If you have followed the steps described below and continue to have issues, I suggest you contact Codebeamer. Codebeamer - Si...
4개월 전 | 0
답변 있음
Import to digsilent a dll generated starting from embedded coder in Simulink
Knowledge Base PowerFactory - DIgSILENT
Import to digsilent a dll generated starting from embedded coder in Simulink
Knowledge Base PowerFactory - DIgSILENT
4개월 전 | 1
답변 있음
FastDDS ShapesDemo Can not Communicate with DDS Blockset ShapesDemo
What is the stop time for the Simuilnk model? Set it to "inf" and regenerate code.
FastDDS ShapesDemo Can not Communicate with DDS Blockset ShapesDemo
What is the stop time for the Simuilnk model? Set it to "inf" and regenerate code.
5개월 전 | 0
답변 있음
How can I check the performance of a simulink model, which should be compiled for embedded hardware later?
You can measure execution time of the generated code on the host computer or on the targer processor using SIL or PIL mode and t...
How can I check the performance of a simulink model, which should be compiled for embedded hardware later?
You can measure execution time of the generated code on the host computer or on the targer processor using SIL or PIL mode and t...
5개월 전 | 0
답변 있음
Import FMU in simulink FMU block simulation error
Is one of the inputs to the FMU block a bus? If so, as the error message indicates, you need to define a Simulink Bus object an...
Import FMU in simulink FMU block simulation error
Is one of the inputs to the FMU block a bus? If so, as the error message indicates, you need to define a Simulink Bus object an...
5개월 전 | 0
| 수락됨
답변 있음
Use a compiled Library .a extension in simulink
You can use the C Caller block to call a function that exists in a library. You'll need the header file that defines the functi...
Use a compiled Library .a extension in simulink
You can use the C Caller block to call a function that exists in a library. You'll need the header file that defines the functi...
5개월 전 | 0
답변 있음
Improving runtime of Simulink model
Use Simulink Profiler to determine which part of the model is consuming the most execution time: https://www.mathworks.com/help...
Improving runtime of Simulink model
Use Simulink Profiler to determine which part of the model is consuming the most execution time: https://www.mathworks.com/help...
5개월 전 | 0
답변 있음
how to define the output of a system object as a bus element in simulink?
create a Simulink Bus with the same layout as the MATLAB structure you are creating in your system object. Set the type of the ...
how to define the output of a system object as a bus element in simulink?
create a Simulink Bus with the same layout as the MATLAB structure you are creating in your system object. Set the type of the ...
5개월 전 | 0
답변 있음
State machine transition with bus data
Try creating a Simuilnk.Bus in base workspace (or Simulink data dictionary) that has the desired fields (abcSeqOK, etc). Then ...
State machine transition with bus data
Try creating a Simuilnk.Bus in base workspace (or Simulink data dictionary) that has the desired fields (abcSeqOK, etc). Then ...
5개월 전 | 0
답변 있음
Errors encountered while building custom code simulation target for model (using "C Function" and Error message with garbled code)
You mention that there is no problem building the code in VS. In VS, are there any compiler or linker flags defined? If so, ad...
Errors encountered while building custom code simulation target for model (using "C Function" and Error message with garbled code)
You mention that there is no problem building the code in VS. In VS, are there any compiler or linker flags defined? If so, ad...
6개월 전 | 0
답변 있음
Running batch script generated from embedded coder on command line gives error
Best guess is that MATLAB is adding some directories to the Windows PATH environment variable for the TI compiler. At the MATLA...
Running batch script generated from embedded coder on command line gives error
Best guess is that MATLAB is adding some directories to the Windows PATH environment variable for the TI compiler. At the MATLA...
6개월 전 | 0
답변 있음
Embedded Coder changes function names from step to output
Not sure how the method name changed to output ... the default should still be step(). However, you can easily change back to "...
Embedded Coder changes function names from step to output
Not sure how the method name changed to output ... the default should still be step(). However, you can easily change back to "...
6개월 전 | 0
| 수락됨
답변 있음
Check model version consistency between generated code and model
I do not think the Model version is available, however, you can use get_param(model,'ModelVersion") from the model, and then com...
Check model version consistency between generated code and model
I do not think the Model version is available, however, you can use get_param(model,'ModelVersion") from the model, and then com...
6개월 전 | 0
| 수락됨
답변 있음
create a switch case by using simulink and generate .c file for that
https://www.mathworks.com/help/simulink/slref/multiportswitch.html
create a switch case by using simulink and generate .c file for that
https://www.mathworks.com/help/simulink/slref/multiportswitch.html
6개월 전 | 0
답변 있음
How to convert byte array to single point value in matlab function for compiling for TI C2000 hardware
byte1 = bitshift(uint32(DataIn(5)),24); byte2 = bitshift(uint32(DataIn(6)),16); byte3 = bitshift(uint32(DataIn(7)),8); byte4 ...
How to convert byte array to single point value in matlab function for compiling for TI C2000 hardware
byte1 = bitshift(uint32(DataIn(5)),24); byte2 = bitshift(uint32(DataIn(6)),16); byte3 = bitshift(uint32(DataIn(7)),8); byte4 ...
6개월 전 | 0
답변 있음
.XML FILE Fast DDS for DDS Blockset
Hello, I was able to create a Simulink model and generate code using your XML file. Note that your XML file is not complete. ...
.XML FILE Fast DDS for DDS Blockset
Hello, I was able to create a Simulink model and generate code using your XML file. Note that your XML file is not complete. ...
6개월 전 | 1
| 수락됨
답변 있음
Create a switch case in simulink and generate a .c file
You can do this in Simulink with a multi-port switch block and then generate code with Simulink coder or Embedded Coder. http...
Create a switch case in simulink and generate a .c file
You can do this in Simulink with a multi-port switch block and then generate code with Simulink coder or Embedded Coder. http...
6개월 전 | 0
답변 있음
Is it possible to generate a Matlab script from a Simulink model?
There is no such utility to do this.
Is it possible to generate a Matlab script from a Simulink model?
There is no such utility to do this.
6개월 전 | 0
| 수락됨
답변 있음
Where is the Location of CMakeLists File When I Build Simulink Model With CMake?
On Windows only Visual Studio 2019 is supported. DDS Blockset System Requirements - MATLAB & Simulink (mathworks.com) Thanks. ...
Where is the Location of CMakeLists File When I Build Simulink Model With CMake?
On Windows only Visual Studio 2019 is supported. DDS Blockset System Requirements - MATLAB & Simulink (mathworks.com) Thanks. ...
7개월 전 | 1
| 수락됨
답변 있음
Where is the Location of CMakeLists File When I Build Simulink Model With CMake?
Did you configure the SImulink model for RTI Connext or eProsima? If RTI Connext DDS, do you have MS Visual Studio 2019 install...
Where is the Location of CMakeLists File When I Build Simulink Model With CMake?
Did you configure the SImulink model for RTI Connext or eProsima? If RTI Connext DDS, do you have MS Visual Studio 2019 install...
7개월 전 | 0
답변 있음
Use of m-scripts in SIMULINK
There is nothing wrong with using Simulink to architect a system comprised entirely of MATLAB Function blocks. NASA has develop...
Use of m-scripts in SIMULINK
There is nothing wrong with using Simulink to architect a system comprised entirely of MATLAB Function blocks. NASA has develop...
7개월 전 | 0
| 수락됨
답변 있음
build the s-function from cli
https://www.mathworks.com/help/simulink/slref/legacy_code.html
build the s-function from cli
https://www.mathworks.com/help/simulink/slref/legacy_code.html
7개월 전 | 0
답변 있음
matlab does not see C/C++ compilers
The link you followed for installing the mingw compiler is obsolete. You should use the Add-On Manager to install the proper mi...
matlab does not see C/C++ compilers
The link you followed for installing the mingw compiler is obsolete. You should use the Add-On Manager to install the proper mi...
7개월 전 | 1
| 수락됨
답변 있음
Preferred approach for code generation with MATLAB embedded coder
Why are you manually reviewing the generated C code? Many workflows require review of the MATLAB code and then test cases that ...
Preferred approach for code generation with MATLAB embedded coder
Why are you manually reviewing the generated C code? Many workflows require review of the MATLAB code and then test cases that ...
7개월 전 | 0
| 수락됨