Community Profile

photo

Mark McBroom

Last seen: 2 dagen ago Active since 2012

I am an Application Engineering Manager at MathWorks.

Statistics

All
  • Community Group Solver
  • Pro
  • Knowledgeable Level 5
  • Word Puzzles Master
  • MATLAB Central Treasure Hunt Finisher
  • Commenter
  • Promoter
  • CUP Challenge Master
  • 6 Month Streak
  • Revival Level 3
  • First Answer
  • Solver

View badges

Content Feed

View by

Answered
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 "...

2 dagen ago | 0

| accepted

Answered
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...

2 dagen ago | 0

| accepted

Answered
create a switch case by using simulink and generate .c file for that
https://www.mathworks.com/help/simulink/slref/multiportswitch.html

2 dagen ago | 0

Answered
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 ...

2 dagen ago | 0

Answered
.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. ...

5 dagen ago | 1

Answered
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...

5 dagen ago | 0

Answered
Is it possible to generate a Matlab script from a Simulink model?
There is no such utility to do this.

5 dagen ago | 0

| accepted

Answered
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. ...

15 dagen ago | 1

| accepted

Answered
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...

15 dagen ago | 0

Answered
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...

15 dagen ago | 0

| accepted

Answered
build the s-function from cli
https://www.mathworks.com/help/simulink/slref/legacy_code.html

15 dagen ago | 0

Answered
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...

20 dagen ago | 0

Answered
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 ...

20 dagen ago | 0

Answered
CodeGen Error using Grouped custom storage classes (struct / bitfield) with referenced model
As the error message indicates, you must write the header file by hand that defines the C structure, and then set the struct sto...

20 dagen ago | 0

Answered
How do you generate a PWM signal through S function in C.I am facing a build error while building.Could anyone help me in this issue.
Why are you writing an S-Function for this simple C algorithm. If you must write this in C, I suggest using the C Function bloc...

30 dagen ago | 0

Answered
Parameter writer block use case issue
It sounds like the value for the Constant block is not TEMP. You need to double click on the Constant block and enter "TEMP" as...

ongeveer een maand ago | 0

Answered
How to have a variable size array out of matlab function block and export that data to matlab (To Workspace) to plot ?
Rather than connecting to a "to workspace" block, did you try right mouse clicking on the signal and marking it as "log" and the...

ongeveer een maand ago | 0

Answered
Getting issue with init.m files while loading the .slx model in matlab
Set a break point in init.m and then rerun the load_system commands to determine the possible problem.

ongeveer een maand ago | 0

Answered
set_param invalid setting error
It looks like you have a mask on a subsystem and are using that mask to control the variant choice. You need to associate that ...

ongeveer een maand ago | 0

| accepted

Answered
Stateflow chart output Initialization
Best guess is the the StateChart also writes to the output on the first activation so the initial value you specifed is optimize...

ongeveer een maand ago | 1

Answered
How to access structure elements in the stateflow charts
You will need to create a Simulink.Bus with the same layout as the matlab structure. Create a Simulink.Parameter called CarConf...

ongeveer een maand ago | 0

Answered
Level-2 S-Function doesn't compile after exporting code with Embedded Coder - 'mwSize' type unknown
You are better off inlining the s-function. If you'd prefer to not write the TLC code required for inlining the C function, you...

ongeveer een maand ago | 0

| accepted

Answered
How to call user-defined C function having return and arguments with GetSet storage class
You should use coder.ceval() to call external C code from Stateflow. https://www.mathworks.com/help/simulink/slref/coder.ceval.h...

ongeveer een maand ago | 0

Answered
Generate exported_enum_type.h file with different name without modifying getHeaderFile()
The only way to change the header file name is by modifying the getHeaderFile() function. Thanks. Mark.

ongeveer een maand ago | 1

Answered
Facing code generation issue
This looks like a bug in the code generator. Submit your model and error log to support@mathworks.com

ongeveer een maand ago | 0

Answered
Simulink variable in Code Composer Studio stops incrementing
It sounds like that section of your code is no longer running. You can use CCS to set a breakpoint to confirm this or you can a...

ongeveer een maand ago | 0

Answered
How to call a .dll and .h into Simulink Realtime?
You can use the C Caller block to do this. Rather than source code, provide the .dll in the "Libraries" tab of the Custom Code ...

2 maanden ago | 0

Solved


Fibonacci Decomposition
Every positive integer has a unique decomposition into nonconsecutive Fibonacci numbers f1+f2+ ... Given a positive integer n, r...

2 maanden ago

Solved


How many Fibonacci numbers?
Find the number of unique Fibonacci numbers (don't count repeats) in a vector of positive integers. Example: x = [1 2 3 4...

2 maanden ago

Solved


Number of Even Elements in Fibonacci Sequence
Find how many even Fibonacci numbers are available in the first d numbers. Consider the following first 14 numbers 1 1 2...

2 maanden ago

Load more