當(dāng)前位置:工程項(xiàng)目OA系統(tǒng) > 領(lǐng)域應(yīng)用 > 倉(cāng)庫(kù)進(jìn)銷存管理系統(tǒng) > 入庫(kù)出庫(kù)管理軟件
舉例說(shuō)明使用MATLAB Coder從MATLAB生成C/C++代碼步驟
申請(qǐng)免費(fèi)試用、咨詢電話:400-8352-114
MATLAB Coder可以從MATLAB代碼生成獨(dú)立的、可讀性強(qiáng)、可移植的C/C++代碼。使用MATLAB Coder產(chǎn)生代碼的3個(gè)步驟:準(zhǔn)備用于產(chǎn)生代碼的MATLAB算法;檢查MATLAB代碼的兼容性(有些matlab代碼語(yǔ)句并不能生成c/c++代碼);產(chǎn)生最終使用的源代碼或MEX。
利用MATLAB Coder生成c++代碼,并在vs2008中驗(yàn)證:
一個(gè)簡(jiǎn)單的例子,兩數(shù)相乘:
1、安裝matlab2011a或者更新版本;
2、簡(jiǎn)單生成一個(gè)foo.m文件;
function c = foo(a, b)%#codegen
%This function muliplies a and b
c = a * b
其中,%#codegen可以防止出現(xiàn)警告錯(cuò)誤
3、在命令窗口,輸入mex -setpu,選中一個(gè)存在的編譯器;
4、在命令窗口輸入coder(圖形界面),回車,彈出MATLAB Coder Project對(duì)話框;
5、在New選項(xiàng)卡Name中輸入一個(gè)工程名foo.prj;點(diǎn)擊Ok,彈出MATLAB Coder MEX Function對(duì)話框;
6、在Overview選項(xiàng)卡中,點(diǎn)擊Add files,彈出對(duì)話框,選中foo.m打開(kāi);
7、單擊變量a,選擇Define by Example…,彈出MATLAB Coder Define by Example對(duì)話框,在MATLAB Expression中輸入5,點(diǎn)擊OK;同樣變量b也進(jìn)行相應(yīng)操作,輸入6;
8、選中Build選項(xiàng)卡,Output type中選擇c/c++ Static Library;選中Generate code only;
9、點(diǎn)擊More settings,GeneralàLanguage選擇C++;Interface選項(xiàng)中去掉所有選項(xiàng);Close;
10、點(diǎn)擊Build,進(jìn)行編譯;點(diǎn)擊View report,彈出Code Generation Report對(duì)話框,此時(shí),變量a、b、c會(huì)顯示相應(yīng)的變量信息;
11、利用vs2008建立一個(gè)控制臺(tái)應(yīng)用程序,將生成的相關(guān)文件foo.h、foo.cpp、rtwtypes.h、foo_types.h拷到相關(guān)目錄下并添加到應(yīng)用程序中;
12、在foo.cpp文件中添加#include “stdafx.h”;
13、test.cpp文件中代碼為:
#include "stdafx.h"
#include "foo.h"
#include <iostream>
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
double a = 0.0, b = 0.0, c = 0.0;
cin>>a>>b;
c = foo(a, b);
cout<<"c = "<<c<<endl;
return 0;
}
一個(gè)復(fù)雜的例子,求一個(gè)數(shù)的n次方根:
1、 兩個(gè).m文件:
nrt.m:
function [nth_rt, iterations, hstry] = nrt(varargin)%#codegen
%This function will use a Newton Search Technique to find
%the nth root of a number, a, to the tolerance, tol.
%The square root
% nrt(10, 2), or nrt(10, 2, 1e-9)
%The "n" root
%nrt(10, n), or nrt(10, n, 1e-9)
a = varargin{1};
n = varargin{2};
if nargin ~= 3
tol = 1e-9;
else
tol = varargin{3};
end
if a < 0
nth_rt = 0;
iterations = 0;
hstry = 0;
else
[nth_rt, hstry] = newtonSearchAlgorithm(a, n, tol);
iterations = length(find(hstry ~= 0));
%iterations = sum(hstry ~= 0);
end
newtonSearchAlgorithm.m:
function [x, h] = newtonSearchAlgorithm(b, n, tol) %#codegen
%Given, "a", this function finds the nth root of a
%number by finding where: x^n-a = 0
coder.inline('never'); %使其生成一個(gè)單獨(dú)的c++文件
notDone = 1;
aNew = 0; %Refined Guess Initialization
a = 1; %Initial Guess
cnt = 0;
h = zeros(50, 1);
h(1) = a;
while notDone
cnt = cnt + 1;
[curVal, slope] = f_and_df(a, b, n); % square
yint = curVal - slope * a;
aNew = -yint / slope; %The new guess
h(cnt) = aNew;
if (abs(aNew-a) < tol) %Break if it's converged
notDone = 0;
elseif cnt > 49 %after 50 iterations, stop
notDone = 0;
aNew = 0;
else
a = aNew;
end
end
x = aNew;
function [f, df] = f_and_df(a, b, n)
%Our function is f=a^n-b and it's derivative is n*a^(n-1).
f = a^n-b;
df = n*a^(n-1);
2、 在命令窗口輸入coder(圖形界面),回車,彈出MATLAB Coder Project對(duì)話框;
3、在New選項(xiàng)卡Name中輸入一個(gè)工程名nrt.prj;點(diǎn)擊Ok,彈出MATLAB Coder MEX Function對(duì)話框;
4、在Overview選項(xiàng)卡中,點(diǎn)擊Add files,彈出對(duì)話框,選中nrt.m打開(kāi);
5、添加三個(gè)輸入,分別為10、2、1e-9;兩個(gè)輸入也可以;
6、選中Build選項(xiàng)卡,Output type中選擇c/c++ Static Library;選中Generate code only;
7、點(diǎn)擊More settings,GeneralàLanguage選擇C++;Interface選項(xiàng)中去掉所有選項(xiàng);Close;
8、點(diǎn)擊Build,進(jìn)行編譯;點(diǎn)擊View report,彈出Code Generation Report對(duì)話框;
9、利用vs2008建立一個(gè)控制臺(tái)應(yīng)用程序,將生成的相關(guān)文件nrt.cpp、nrt.h、newtonSearchAlgorithm.cpp、newtonSearchAlgorithm.h、nrt_types.h、rtwtypes.h拷到相關(guān)目錄下并添加到應(yīng)用程序中;
10、分別在nrt.cpp、newtonSearchAlgorithm.cpp文件中添加#include “stdafx.h”;
11、test.cpp文件中代碼為:
#include "stdafx.h"
#include "nrt.h"
#include <iostream>
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
double varargin_1 = 0, varargin_2 = 0, varargin_3 = 1e-9;
cin>>varargin_1>>varargin_2;
double nth_rt = 0, iterations = 0;
double hstry_data[50] = {0};
int hstry_sizes[1] = {0};
nrt(varargin_1, varargin_2, varargin_3, &nth_rt, &iterations, hstry_data, hstry_sizes);
cout<<"nth_rt = "<<nth_rt<<endl;
cout<<"iterations = "<<iterations<<endl;
cout<<"hstry_data = "<<endl;
for (int i=0; i<50; i++)
{
cout<<hstry_data[i]<<endl;
}
cout<<"hstry_sizes = "<<hstry_sizes[0]<<endl;
return 0;
}
- 1無(wú)法升級(jí)更新
- 2如何使用Tasklist命令
- 3IP地址沖突問(wèn)題的解決方法
- 4電腦死機(jī)故障分析
- 5更改IE的默認(rèn)搜索引擎
- 6內(nèi)部網(wǎng)上的IP地址應(yīng)該如何設(shè)置
- 7解開(kāi)被鎖定的.reg與.inf文件
- 8工廠倉(cāng)庫(kù)管理軟件(網(wǎng)絡(luò)版)
- 9如何徹底刪除輸入法文件
- 10WinXP瘦身辦法
- 11工廠倉(cāng)庫(kù)管理軟件 3.02
- 12設(shè)置任務(wù)管理器
- 13C++為什么難學(xué)
- 14改良程序需要的一些技巧11個(gè)
- 15操作系統(tǒng)進(jìn)程描述
- 16泛普入庫(kù)出庫(kù)管理軟件軟件/免費(fèi)醫(yī)藥進(jìn)銷存系統(tǒng)/店鋪商品出入庫(kù)打單使用技巧總結(jié)
- 17Regsvr32 用法和錯(cuò)誤消息的說(shuō)明
- 18網(wǎng)卡沒(méi)有安裝成功該怎么解決
- 19用SQL語(yǔ)句,熟練使用刪除語(yǔ)句
- 20隱藏桌面‘回收站’的兩個(gè)方法
- 21雙系統(tǒng)的安全卸載
- 22破解網(wǎng)頁(yè)禁用鼠標(biāo)右鍵
- 23解決鼠標(biāo)右鍵被鎖定,我的電腦不知道為什么鼠標(biāo)右鍵被鎖定了,用不了。請(qǐng)問(wèn)如何解決?
- 24入庫(kù)出庫(kù)管理軟件智能、高效、操作便利
- 25BIOS與CMOS區(qū)別
- 26部分軟件無(wú)法安裝
- 27系統(tǒng)無(wú)法自動(dòng)保存設(shè)置
- 28如何知道局域網(wǎng)中所有計(jì)算機(jī)的IP地址
- 29如何重新安裝IE瀏覽器
- 30入庫(kù)出庫(kù)管理軟件免費(fèi)版 5.1.0
成都公司:成都市成華區(qū)建設(shè)南路160號(hào)1層9號(hào)
重慶公司:重慶市江北區(qū)紅旗河溝華創(chuàng)商務(wù)大廈18樓