回答済み
Import Amesim model into Simulink without generating MEX files
This can be done with an FMU: https://www.mathworks.com/matlabcentral/answers/497837-how-to-import-fmu-from-amesim-to-simulink ...

3年以上 前 | 0

回答済み
Using Simulink Signals as Simulink Block Parameters
I do not think this is possible. You may need to build your own verision of a tapped delay block that has as an input the numbe...

3年以上 前 | 1

| 採用済み

回答済み
How to pass Function Call to s function builder block?
You could place the S-Function Builder Block inside a function call subsystem, and then call the function-call subsystem from th...

3年以上 前 | 0

| 採用済み

回答済み
How to change contents of blocks in multiple instances of referenced model in Simulink?
It is possible to have referenced models use different parameter values by setting them up as parameter arguments. However, it ...

3年以上 前 | 0

回答済み
How to change the name of topic in DDS
You are correct that the DDS Data Dictionary currently does not allow the user to create a Topic with a name that contains a sla...

3年以上 前 | 0

回答済み
Simulink connection to OpenDDS
The DDS Blockset also supported eProsima fastRTPS, which is open source... in fact, it is shipped with the DDS Blockset.

3年以上 前 | 0

回答済み
How do we Simulate CoreDDX DDS?
Currently only RTI DDS and eProsima fastRTPS are supported. What processor and OS parameters are you looking to be included?

3年以上 前 | 0

回答済み
Relationship Block Not Working As Expected when using single data type
There is nothing to "fix". You should design your algorithm so that you are not comparing floating point variables to floating ...

3年以上 前 | 0

回答済み
Data Store Read/Write block 'IndexMode' parameter setting error
It sounds like the Data Store Memory set up to be scalar. Open the Data Store Memory block for Data Store A and set the deminsi...

3年以上 前 | 0

回答済み
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...

3年以上 前 | 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 ...

3年以上 前 | 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...

3年以上 前 | 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/...

3年以上 前 | 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...

3年以上 前 | 0

回答済み
How to call matlab class method from simulink
function y = fcn(u) dsp = t_dsp; y = dsp.calc_val(u); end

3年以上 前 | 1

| 採用済み

回答済み
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 ...

4年弱 前 | 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...

4年弱 前 | 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...

4年弱 前 | 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.

4年弱 前 | 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...

4年弱 前 | 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...

4年弱 前 | 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...

4年弱 前 | 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...

約4年 前 | 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...

約4年 前 | 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: ...

約4年 前 | 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...

約4年 前 | 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...

約4年 前 | 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...

約4年 前 | 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()

約4年 前 | 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...

約4年 前 | 0

さらに読み込む