Answered
How to generate RTW file programmatically?
slbuild() can be used to generate code for a subsystem: % open example model rtwdemo_rtwintro %generate code for subsystem ...

mer än 2 år ago | 0

Solved


Code breaker, Part II: Operation Orthos
You have been tasked with decoding several batches of coded messages that have been intercepted. Based on previous intellig...

mer än 2 år ago

Solved


Scrabble Scores - 13
This problem integrates components of <https://www.mathworks.com/matlabcentral/cody/problems/3084-scrabble-scores-11 Scrabble Sc...

nästan 3 år ago

Solved


Scrabble Scores - 12
This problem builds directly off of <https://www.mathworks.com/matlabcentral/cody/problems/3082-scrabble-scores-10 Scrabble Scor...

nästan 3 år ago

Solved


Scrabble Scores - 11
This problem builds on the previous problem, wherein you were provided a letter of an existing word on the board and from which ...

nästan 3 år ago

Solved


Scrabble Scores - 10
This problem is very similar to the previous problem. Here, you are provided a letter of an existing word on the board from whic...

nästan 3 år ago

Solved


Scrabble Scores - 9
After developing a sophisticated Scrabble scoring routine, it's time to write an optimization routine for single-word scoring. T...

nästan 3 år ago

Solved


Scrabble Scores - 8
This problem is part of a set of problems that successively develop a more sophisticated Scrabble scoring routine. The point dis...

nästan 3 år ago

Solved


Scrabble Scores - 7
This problem is part of a set of problems that successively develop a more sophisticated Scrabble scoring routine. The point dis...

nästan 3 år ago

Answered
State transition table outputs printing in diagnostic viewer
Most likely this is due to a missing semicolon to terminate a MATLAB statement in your statechart.

nästan 3 år ago | 0

Answered
Why can't I create a test harness on a subsystem in a reference subsystem?
Try opening the reference subsystem model directly. You should be able to then create a test harness on a subsystem inside that ...

nästan 3 år ago | 0

Answered
Programatically set Inport/Outport Blocks as "Output as nonvirtual bus"
use find_mdlrefs() to get a list of all referenced models For each model, use find_system() to get a list of inports and outpor...

nästan 3 år ago | 0

Answered
how to add static link library to S function
When compiling and linking your s-function using the mex command, you can provide optional argument -L to link to a library. Yo...

nästan 3 år ago | 1

Answered
Combine subsystems in Simulink with continuous and discrete states
You can not set a different solver for each subsystem. The solver is defined at the model level and applies to all subsystems i...

nästan 3 år ago | 0

| accepted

Answered
How can I export my app that was created in app designer which uses simulink model to an executable format?
You need to use Simulink Compiler as described here: https://www.mathworks.com/help/slcompiler/ug/deploy-a-simulation-with-simu...

nästan 3 år ago | 0

Answered
Having trouble compiling a C code.
You need to provide both the mex C source code and your source code to the mex function: mex disloc_mex.c disloc.c Thanks....

nästan 3 år ago | 0

Answered
How to use IDL sequences in Simulink DDS Blockset
Unfortunately, the DDS Blockset does not fully support sequences. Simulink will treat a sequence as a fixed length vector. The ...

nästan 3 år ago | 0

Answered
What is the best way to distribute a custom simulink library using C++ S-Function blocks to multiple users? Preferably using some form of CI/CD pipeline
Write a MATLAB script that Uses the mex() function to compile and link source code for each S-function into a mex function ( y...

nästan 3 år ago | 0

| accepted

Answered
Using mcc with simulink.
You should be using Simulink Compiler to compile and deploy a Simulink model. Simulink Compiler

ungefär 3 år ago | 0

Answered
Error Updating Model Reference SIM Targets (an error occured during the call to make)
The error is coming from the mingw compiler that Simulink is using to compile/link the code generated from model "machine". Do ...

ungefär 3 år ago | 0

| accepted

Answered
How to use C Caller block with C code having multiple functions ?
The C Caller block can only call one function. You can either use a seperate C-Caller block for each function, or write a wrapp...

ungefär 3 år ago | 0

| accepted

Answered
Simulink intermittently hangs after return from mdlStart() in call to external C++ sfunction
Comment out or remove your S-Function block to determine if your s-function causes the hang. If it does, then you could try to ...

ungefär 3 år ago | 0

Answered
"Generate Code Only" throws error for MATLAB block in Simulink
Code is always generated from MATLAB Function blocks and compiled into a mex function, even if you select the "Generate code onl...

ungefär 3 år ago | 0

Answered
How to dynamically change the Mask dialog box in Simulink
I am assuming the code you provided is from the "Initialization" tab? You could try putting the same code in the "callback" for...

ungefär 3 år ago | 1

| accepted

Answered
Supress Simulink Prj open dialog
Delete the mcArch_01_prj.prj file and the hidden folder .SimulinkProject

mer än 3 år ago | 1

| accepted

Answered
Reset timer to zero after leaving a state with a transition action
There is no way to reset the simulation time. The approach you are using, which is to get simulation time when the state transi...

mer än 3 år ago | 0

| accepted

Answered
How do you test a neural network
https://www.mathworks.com/help/stats/assess-regression-neural-network-performance.html

mer än 3 år ago | 0

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

mer än 3 år 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...

mer än 3 år 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 ...

mer än 3 år ago | 0

| accepted

Load more