Mark McBroom
Followers: 0 Following: 0
I am an Application Engineering Manager at MathWorks.
Estadística
0 Preguntas
428 Respuestas
0 Problemas
139 Soluciones
CLASIFICACIÓN
172
of 295.467
REPUTACIÓN
666
CONTRIBUCIONES
0 Preguntas
428 Respuestas
ACEPTACIÓN DE RESPUESTAS
0.00%
VOTOS RECIBIDOS
63
CLASIFICACIÓN
of 20.234
REPUTACIÓN
N/A
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
0 Archivos
DESCARGAS
0
ALL TIME DESCARGAS
0
CLASIFICACIÓN
1.306
of 153.912
CONTRIBUCIONES
0 Problemas
139 Soluciones
PUNTUACIÓN
1.740
NÚMERO DE INSIGNIAS
8
CONTRIBUCIONES
0 Publicaciones
CONTRIBUCIONES
0 Público Canales
EVALUACIÓN MEDIA
CONTRIBUCIONES
0 Temas destacados
MEDIA DE ME GUSTA
Feeds
Code generation in jenkins pipeline
Also ensure that MATLAB Coder/Simulink Coder/Embedded Coder is installed on the jenkins machine.
6 días hace | 0
Inlined tunable parameter values because of using different data type then double-precision
You can either set the data to the proper data type in the data dictionary, or you can cast the value in the block dialog. For ...
6 días hace | 0
Why does code generated by Embedded Coder change when subsystem does not change?
The code from a subsystem model can change if the parent model changes, even if no changes were made to the subsystem. During t...
6 días hace | 0
Matlab's Simulink UDP send to unity
Ive not worked with unity, but have you tried just sending and receiving a float? Simulink can do this no problem. This would...
6 días hace | 0
Realtime streaming in Simulink?
Constant blocks are only updated with new workspace vaues if the Simulink model is: paused, Model Update, and then resumed. A b...
6 días hace | 0
Embedded Coder shall use an externally implemented nested struct for read and write access (in place) in it's generated code which is written in C.
A couple of ideas. It sounds like the functional call sub-system is set to be reusable. Try to make it non-reusable. Follow t...
20 días hace | 0
About legacy code: can you go from labview to simulink via dlls?
Try generating an FMU from your Simulink model and then using that FMU in Labview https://www.mathworks.com/help/slcompiler/gs/...
20 días hace | 0
Stateflow: reset simulink-based state on entry
Did you try putting a reset subsystem in the Simulink subsystem to reset the state? https://www.mathworks.com/help/simulink/ug/...
2 meses hace | 0
Header files not generated
You are correct. Those files are not generated but rather are shipped with Simulink Coder/Embedded Coder.
2 meses hace | 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...
4 meses hace | 0
| aceptada
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...
5 meses hace | 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...
6 meses hace | 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...
6 meses hace | 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...
6 meses hace | 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...
6 meses hace | 0
Import to digsilent a dll generated starting from embedded coder in Simulink
Knowledge Base PowerFactory - DIgSILENT
6 meses hace | 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.
7 meses hace | 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...
7 meses hace | 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...
7 meses hace | 0
| aceptada
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...
7 meses hace | 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...
7 meses hace | 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 ...
7 meses hace | 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 ...
7 meses hace | 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...
8 meses hace | 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...
8 meses hace | 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 "...
8 meses hace | 0
| aceptada
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...
8 meses hace | 0
| aceptada
create a switch case by using simulink and generate .c file for that
https://www.mathworks.com/help/simulink/slref/multiportswitch.html
8 meses hace | 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 ...
8 meses hace | 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. ...
8 meses hace | 1
| aceptada