답변 있음
Why do I receive this TLC processing error: need to rebuild my my model because of incomplete records in the .rtw file.
Your MATLAB code at the top of this post is for Simulink model "basic" but the error message and RTW file is for model "basic2"....

5개월 전 | 0

답변 있음
Static library code generation from windows to linux
The Raspberry Pi support package generates the C code on the host Windows computer, then the copies the code to the Raspberry Pi...

5개월 전 | 0

| 수락됨

답변 있음
linking local embedded library when code generation
If you are on a windows computer, then Embedded Coder is using a Windows compiler ( either Visual Studio or mingw). You can't h...

5개월 전 | 0

| 수락됨

답변 있음
For different simulation instants Simulink shows different values read from the serial port for the same input on the ADC pin.
When you push the simulation button for the model on the left ( untitled1 ), the model is not running on the actual hardware. Y...

5개월 전 | 0

답변 있음
I am not able to connect to zynq processor through simulink, as it is not able to establish SSH connection.
Did you also use root as userid when connecting to ssh? Zynq default is userid: root with password: root Mark.

5개월 전 | 0

답변 있음
Using a C Union datatypes as an input/Output for a S-function on Simulink
Simulink does not support unions. However, you can work around this by treating the union as a Simulink.Bus data object with Da...

5개월 전 | 0

| 수락됨

답변 있음
differences between "C Function" and "S-Function (Builder)"
The 2 blocks have similar use cases. The recommended approach is the C Function block or C Caller Block. These two blocks are ...

5개월 전 | 0

답변 있음
How to give initial value to the subsystem to use for the first time step and then use values from the loop?
The unit delay block is probably the best approach. This block lets you specify initial output. You might also want to examine...

5개월 전 | 0

| 수락됨

답변 있음
Warning of S-function builder block in Simulink
Did you move to a new version of MATLAB? If you, try deleting or renaming the C file referenced in the Command Window error mess...

5개월 전 | 0

| 수락됨

답변 있음
which one do u prefer when making for loop in simulink
The third option is MATLAB Function block. https://www.mathworks.com/help/ecoder/ug/for-loop.html The decision on which to us...

5개월 전 | 0

답변 있음
Is it possible to compile matlab code to Keil 5 code(C language) ?
You should use MATLAB Coder to generate C/C++ code from from your MATLAB code.

6개월 전 | 0

답변 있음
How to namespace the C++ code from simulink embedded coder
https://www.mathworks.com/help/ecoder/ug/interactively-configure-cpp-interface.html

6개월 전 | 0

| 수락됨

문제를 풀었습니다


Poker Series 01: isStraightFlush
The Poker Series consists of many short, well defined functions that when combined will lead to complex behavior. Our goal is to...

7개월 전

답변 있음
Get Simulink Model Notes content programmatically to merge notes for Integration Model
This link provides details on command line API for working with annotations: https://www.mathworks.com/help/simulink/ug/create-...

7개월 전 | 0

문제를 풀었습니다


Find the minimum of the column-maximums of a matrix
Given a matrix A, find the maximum value of each column, then return the smallest of those maximum values (ie return the minimum...

7개월 전

문제를 풀었습니다


Calculate the mean of each half of a matrix
Given a matrix with an even number of columns, n, return a 1-by-2 row vector where the first element is the mean of all the elem...

7개월 전

문제를 풀었습니다


Find Closest Constant
Given a number x, return the value that is closest to x from this list of constants: 0, 1, , e, , (also known as ). For exampl...

7개월 전

문제를 풀었습니다


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

7개월 전

답변 있음
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 ...

8개월 전 | 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...

8개월 전 | 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...

8개월 전 | 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 ...

8개월 전 | 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...

8개월 전 | 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.

8개월 전 | 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?

8개월 전 | 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 ...

9개월 전 | 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...

9개월 전 | 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...

9개월 전 | 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 ...

9개월 전 | 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...

10개월 전 | 0

더 보기