답변 있음
best practise for simulink git
See this guide on configuring git to use MATLAB diff/merge: https://www.mathworks.com/help/matlab/matlab_prog/customize-externa...

대략 1년 전 | 0

| 수락됨

답변 있음
How to multiply row and column vectors in Simulink
Your MATLAB code takes advantage of implicit expansion. This feature is not available in Simulink. You'll need to update your ...

대략 1년 전 | 1

답변 있음
How do I add character to a string in Simulink/Simevents?
Simulink doesn't like the fact that the variable s grows in length. Try something like this: ..... s = repat(' ',1,10...

대략 1년 전 | 0

답변 있음
How to create a .dll from a .slx?
This can be done with SImulink Coder + Embedded Coder and then use the ert_shrlib.tlc target file. https://www.mathworks.com/...

대략 1년 전 | 0

답변 있음
Logging state-transition from stateflow in generated code
You could enable this feature: https://www.mathworks.com/help/stateflow/ug/use-active-state-output.html And then log the signal...

대략 1년 전 | 0

답변 있음
How to call matlab class method from simulink
function y = fcn(u) dsp = t_dsp; y = dsp.calc_val(u); end

대략 1년 전 | 0

| 수락됨

답변 있음
Signal line lock icon
They mean that there is a data transfer between the source and destination of the line (as those blocks are mapped to different ...

대략 1년 전 | 0

답변 있음
Parsing Test Manager Information with Nested Folders
Try using this syntax to get all test cases in a nested folder structure: suite = TestSuite.fromFolder(pwd, 'IncludingSubfold...

대략 1년 전 | 0

답변 있음
Instances interfere with each other in a simulation of subsystem reuse.
The most straightforward approach is to use model reference. I suggest trying this again and if you have problems post your mod...

대략 1년 전 | 1

| 수락됨

답변 있음
How can I set a Block-parameter value that is a Simulink.Signal contained in a struct?
Try using Simulink.Parameter rather than Simuilnk.Signal.

1년 초과 전 | 0

답변 있음
How can I write this block
The result of the multiply will be a 2x1 vector. Use the selector block to split off each of the two elements of the vector int...

1년 초과 전 | 0

답변 있음
Does legacy code include static libraries?
You are correct that the static library is not needed for simulation because it is already linked into the mexw64 file. In orde...

1년 초과 전 | 1

답변 있음
How to obtain DDS blockset data through maltab
You can use the logging features of Simulink to log data sent or received. You can also use the recording capabilities of the D...

1년 초과 전 | 0

답변 있음
Error: Error occurred when checking data object usage for model
Since the top model VCU_App needs to interact with the child models using the same exported signals, you'll need to set owner of...

1년 초과 전 | 0

답변 있음
How do I get a pointer to a structure for in/out parameters
A non-virtual bus can be used to hold the input signals and a second non-virtual bus for the output signals. This will result i...

1년 초과 전 | 0

| 수락됨

답변 있음
Autocode step function naming
Use the code mappings capability of Embedded Coder to control the names of the step functions. See the end of this web page: ...

1년 초과 전 | 0

| 수락됨

답변 있음
Matrix column extraction not working when using codegen
By default, code from MATLAB coder is column major Try changing to row-major as described here: https://www.mathworks.com/help...

1년 초과 전 | 0

| 수락됨

답변 있음
mex file generation failed
See the bottom of this page for instructions on how to use a source code debugger on C Mex Functions. https://www.mathworks.c...

1년 초과 전 | 0

답변 있음
Protect Code for Third Party Deployment
Another option would be to put your MATLAB code into a SImulink model via a MATLAB Function block and then distribute the Simuli...

1년 초과 전 | 0

답변 있음
mex file generation failed
It looks like you are missing the .c file that contains the code for speed_control_initialize() and speed_control_step()

1년 초과 전 | 0

| 수락됨

답변 있음
PX4 with Simulink
You do not need PX4 hardware. The PX4 support package includes a PX4 simulator that you can use in place of actual hardware T...

1년 초과 전 | 0

답변 있음
C Union data type in Matlab/Simulink
You are correct that Simulink does not support unions. If you plan to use only one of the union-ed fields in your Simulink mode...

1년 초과 전 | 0

답변 있음
How do I access STM32 HAL headers in Simulink S-Function-Builder?
What is the purpose of the C Coder you are trying to integrate with S-Function Builder? The purpose of S-Function builder is to...

1년 초과 전 | 0

답변 있음
Simulink to DLL compatiable with TRNSYS
By default grt.tlc generates non-resuable code. In <model>.c you will note global variables for holding state information. To ...

1년 초과 전 | 0

답변 있음
MATLAB cannot find CMake on Ubuntu 20.04
Is R2021b or R2022a an option? We began shipping cmake with MATLAB in those releases so there is no need to install cmake separ...

1년 초과 전 | 0

답변 있음
Is Stateflow's temporal logic compatible with embedded coder?
Temporal logic in Stateflow is fully supported for code generation with Embedded Coder. Thanks. Mark.

1년 초과 전 | 0

| 수락됨

답변 있음
app designer interface with simulink
This link provides steps for linking App Designer UI to Simulink: https://www.mathworks.com/matlabcentral/answers/1659870-app-d...

1년 초과 전 | 0

답변 있음
Delete Specific Simulink Block in a Linked Subsystem using m-script (MATLAB)
You have 2 options. if you want to delete the block for all instances of the subsystem, the you should open the simulink libr...

1년 초과 전 | 0

답변 있음
More efficient equivalent to while looping block in Simulink
You could try a MATLAB Function block and implement the logic in MATLAB.

1년 초과 전 | 0

답변 있음
Two way communication between Simulink and Raspberry Pi
You can use the UDP block in Simulink to do this: https://www.mathworks.com/help/ecoder/ref/udpsend.html#:~:text=Embedded%20C...

1년 초과 전 | 0

더 보기