Solved


Matrix Quadrants
Write a function that takes N as the input, and outputs a matrix whose upper-left (NxN) quadrant contains all ones, the lower-ri...

mer än ett år ago

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

nästan 2 år ago | 0

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

nästan 2 år ago | 1

| accepted

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

nästan 2 år ago | 0

| accepted

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

nästan 2 år ago | 0

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

nästan 2 år ago | 0

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

nästan 2 år ago | 0

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

nästan 2 år ago | 0

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

nästan 2 år ago | 0

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

nästan 2 år ago | 0

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

nästan 2 år ago | 0

| accepted

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

nästan 2 år ago | 1

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

nästan 2 år ago | 0

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

nästan 2 år ago | 0

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

nästan 2 år ago | 0

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

nästan 2 år ago | 1

| accepted

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

ungefär 2 år ago | 0

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

ungefär 2 år ago | 0

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

ungefär 2 år ago | 1

| accepted

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

ungefär 2 år ago | 0

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

ungefär 2 år ago | 0

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

ungefär 2 år ago | 1

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

ungefär 2 år ago | 0

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

ungefär 2 år ago | 0

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

mer än 2 år ago | 0

| accepted

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

mer än 2 år ago | 0

| accepted

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

mer än 2 år ago | 0

| accepted

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

mer än 2 år ago | 0

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

mer än 2 år ago | 0

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

mer än 2 år ago | 0

| accepted

Load more