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

fast 4 Jahre vor | 0

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

fast 4 Jahre vor | 1

| akzeptiert

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

fast 4 Jahre vor | 0

| akzeptiert

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

fast 4 Jahre vor | 0

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

fast 4 Jahre vor | 0

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

fast 4 Jahre vor | 0

Beantwortet
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?

fast 4 Jahre vor | 0

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

fast 4 Jahre vor | 0

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

fast 4 Jahre vor | 0

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

fast 4 Jahre vor | 0

| akzeptiert

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

fast 4 Jahre vor | 1

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

etwa 4 Jahre vor | 0

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

etwa 4 Jahre vor | 0

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

etwa 4 Jahre vor | 0

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

etwa 4 Jahre vor | 1

| akzeptiert

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

etwa 4 Jahre vor | 0

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

etwa 4 Jahre vor | 0

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

etwa 4 Jahre vor | 1

| akzeptiert

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

etwa 4 Jahre vor | 0

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

etwa 4 Jahre vor | 0

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

etwa 4 Jahre vor | 1

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

mehr als 4 Jahre vor | 0

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

mehr als 4 Jahre vor | 0

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

mehr als 4 Jahre vor | 0

| akzeptiert

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

mehr als 4 Jahre vor | 0

| akzeptiert

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

mehr als 4 Jahre vor | 0

| akzeptiert

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

mehr als 4 Jahre vor | 0

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

mehr als 4 Jahre vor | 0

Beantwortet
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()

mehr als 4 Jahre vor | 0

| akzeptiert

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

mehr als 4 Jahre vor | 0

Mehr laden