how to generate MATLAB code from Simulink model
415 ビュー (過去 30 日間)
表示 古いコメント
Hi, I have a relatively complex simulink model, from which a MATLAB code must be generated. I want to use the generated code in App designer to develop an app and finally compile the app using `Application Compiler`, so that it can be used on every system without having MATLAB installed. The process can be summed up as the following: Simulink --> MATLAB code (.m) --> App Designer --> Application compiler (.exe)
4 件のコメント
回答 (3 件)
Walter Roberson
2018 年 10 月 31 日
There is no support for what you are doing.
You can use Simulink Real Time Explorer, using instrument panels for user interaction.
https://www.mathworks.com/help/xpc/export-explorer-configuration-as-standalone-executable.html
0 件のコメント
Eric Sargent
2020 年 12 月 9 日
編集済み: Eric Sargent
2020 年 12 月 9 日
As of R2020a you can use Simulink Compiler to compile your model and use it with your deployed / compiled App Designer app.
More information about Simulink Compiler can be found here:
0 件のコメント
puli
2022 年 10 月 5 日
編集済み: Walter Roberson
2022 年 10 月 5 日
image = imread('jump.jpg'); % read image
% get image dimensions: an RGB image has three planes
% reshaping puts the RGB layers next to each other generating
% a two dimensional grayscale image
[height, width, planes] = size(image);
rgb = reshape(image, height, width * planes);
imagesc(rgb); % visualize RGB planes
colorbar on % display colorbar
r = image(:, :, 1); % red channel
g = image(:, :, 2); % green channel
b = image(:, :, 3); % blue channel
The result is:
1 件のコメント
参考
カテゴリ
Find more on C Code Generation in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!