回答済み
Embedded Coder: function to receive decoded Macro
After code is generated, you can load the file buildinfo.mat. This data object contains names of all generated source and heade...

約3年 前 | 0

回答済み
Cant use nested bus objects with bus object arrays in simulink
As the error message indicates, configure the bus selector to select the arrows element, which is an array of buses. You can th...

約3年 前 | 0

| 採用済み

回答済み
How to check real-time data generated by simulink in C++
External mode sounds like wha tyou are looking for. See this description of external mode using the TI C2000 Hardare Support Pa...

約3年 前 | 0

回答済み
Is it possible to compile matlab code to Keil 5 code(C language) ?
Have you installed the ARM Cortext support package? https://www.mathworks.com/hardware-support/arm-cortex-m.html Thanks. ma...

約3年 前 | 0

回答済み
How do I compile mex with own toolchain?
It sounds like you have some C code that you want to use in MATLAB or Simulink running on a Windows system. If this is correct,...

3年以上 前 | 0

| 採用済み

回答済み
How to use Simulink generated DLL into Matlab script?
You should be able to call functions in DLL from MATLAB using either loadlibrary() https://www.mathworks.com/help/matlab/ref/loa...

3年以上 前 | 0

回答済み
Why are "test points" used in Code Generation ?
A test point results in a dedicated variable in the generated code that can then be monitored. Otherwise, Simulink Coder will t...

3年以上 前 | 0

| 採用済み

回答済み
Does the Commercial DDS Blockset support Union Types?
Hi Mike, Unions are currently not supported by the commercial DDS Blockset. Thanks. Mark.

3年以上 前 | 0

回答済み
C++ generated code class inheritance
This is currently not possible with Embedded Coder. Thanks. Mark.

3年以上 前 | 1

| 採用済み

回答済み
Level-2 MATLAB S-Function to get the data from Optitrack To Simulink
It looks like the API for this device is C++ https://www.optitrack.com/software/camera-sdk/ You will need to write a C++ SFunct...

3年以上 前 | 0

回答済み
S-function based simulink file failed to generate c code
In order to generate C/C++ code from an MFile S-FUnction, you must provide a TLC file. https://www.mathworks.com/help/rtw/tlc/i...

3年以上 前 | 0

回答済み
Variable size arrays for code generation
Try first declaring a to be a 3-D matrix before declaring varsize: a = zeros(2,2,2); coder.varsize('a') a= process_layer(a,...

3年以上 前 | 0

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

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

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

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

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

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

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

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

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

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

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

3年以上 前 | 0

回答済み
How to namespace the C++ code from simulink embedded coder
https://www.mathworks.com/help/ecoder/ug/interactively-configure-cpp-interface.html

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

3年以上 前

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

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

3年以上 前

解決済み


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

3年以上 前

解決済み


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

3年以上 前

解決済み


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

3年以上 前

さらに読み込む