从MATLAB代码生成独立c语言代码.docx

上传人:b****7 文档编号:25988589 上传时间:2023-06-17 格式:DOCX 页数:8 大小:78.61KB
下载 相关 举报
从MATLAB代码生成独立c语言代码.docx_第1页
第1页 / 共8页
从MATLAB代码生成独立c语言代码.docx_第2页
第2页 / 共8页
从MATLAB代码生成独立c语言代码.docx_第3页
第3页 / 共8页
从MATLAB代码生成独立c语言代码.docx_第4页
第4页 / 共8页
从MATLAB代码生成独立c语言代码.docx_第5页
第5页 / 共8页
点击查看更多>>
下载资源
资源描述

从MATLAB代码生成独立c语言代码.docx

《从MATLAB代码生成独立c语言代码.docx》由会员分享,可在线阅读,更多相关《从MATLAB代码生成独立c语言代码.docx(8页珍藏版)》请在冰豆网上搜索。

从MATLAB代码生成独立c语言代码.docx

从MATLAB代码生成独立c语言代码

从MATLAB代码生成独立c语言代码

Matlab用helplsqcurvefit

 MATLABCoder可以从MATLAB代码生成独立的、可读性强、可移植的C/C++代码。

使用MATLABCoder产生代码的3个步骤:

准备用于产生代码的MATLAB算法;检查MATLAB代码的兼容性(有些matlab代码语句并不能生成c/c++代码);产生最终使用的源代码或MEX。

利用MATLABCoder生成c++代码,并在vs2008中验证:

一个简单的例子,两数相乘:

1、安装matlab2011a或者更新版本;

2、简单生成一个foo.m文件;

functionc=foo(a,b)%#codegen

%Thisfunctionmulipliesaandb

c=a*b

其中,%#codegen可以防止出现警告错误

{

 

   doublea=0.0,b=0.0,c=0.0;

 

   cin>>a>>b;

 

   c=foo(a,b);

 

   cout<<"c="<

 

   return0;

}

 

一个复杂的例子,求一个数的n次方根:

1、 两个.m文件:

nrt.m:

function[nth_rt,iterations,hstry]=nrt(varargin)%#codegen

%ThisfunctionwilluseaNewtonSearchTechniquetofind

%thenthrootofanumber,a,tothetolerance,tol.

%Thesquareroot

%nrt(10,2),ornrt(10,2,1e-9)

%The"n"root

%nrt(10,n),ornrt(10,n,1e-9)

 

a=varargin{1};

n=varargin{2};

 

ifnargin~=3

   tol=1e-9;

else

   tol=varargin{3};

end

 

ifa<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",thisfunctionfindsthenthrootofa

%numberbyfindingwhere:

x^n-a=0

coder.inline('never');%使其生成一个单独的c++文件

notDone=1;

aNew   =0;%RefinedGuessInitialization

a      =1;%InitialGuess

cnt    =0;

h=zeros(50,1);

h

(1)   =a;

whilenotDone

   cnt=cnt+1;

   [curVal,slope]=f_and_df(a,b,n);% square

   yint=curVal-slope*a;

   aNew=-yint/slope;%Thenewguess

   h(cnt)=aNew;

   if(abs(aNew-a)

       notDone=0;

   elseifcnt>49%after50iterations,stop

       notDone=0;

       aNew=0;

   else

       a=aNew;

   end

end

x=aNew;

 

function[f,df]=f_and_df(a,b,n)

%Ourfunctionisf=a^n-bandit'sderivativeisn*a^(n-1).

 

f =a^n-b;

df=n*a^(n-1);

 

2、 在命令窗口输入coder(图形界面),回车,弹出MATLABCoderProject对话框;

3、在New选项卡Name中输入一个工程名nrt.prj;点击Ok,弹出MATLABCoderMEXFunction对话框;

4、在Overview选项卡中,点击Addfiles,弹出对话框,选中nrt.m打开;

5、添加三个输入,分别为10、2、1e-9;两个输入也可以;

6、选中Build选项卡,Outputtype中选择c/c++StaticLibrary;选中Generatecodeonly;

7、点击Moresettings,General-->Language选择C++;Interface选项中去掉所有选项;Close;

8、点击Build,进行编译;点击Viewreport,弹出CodeGenerationReport对话框;

9、利用vs2008建立一个控制台应用程序,将生成的相关文件nrt.cpp、nrt.h、newtonSearchAlgorithm.cpp、newtonSearchAlgorithm.h、nrt_types.h、rtwtypes.h拷到相关目录下并添加到应用程序中;

10、分别在nrt.cpp、newtonSearchAlgorithm.cpp文件中添加#include“stdafx.h”;

11、test.cpp文件中代码为:

#include"stdafx.h"

#include"nrt.h"

 

#include

 

usingnamespacestd;

 

int_tmain(intargc,_TCHAR*argv[])

{

   doublevarargin_1=0,varargin_2=0,varargin_3=1e-9;

 

   cin>>varargin_1>>varargin_2;

 

   doublenth_rt=0,iterations=0;

 

   doublehstry_data[50]={0};

 

   inthstry_sizes[1]={0};

 

   nrt(varargin_1,varargin_2,varargin_3,&nth_rt,&iterations,hstry_data,hstry_sizes);

 

   cout<<"nth_rt="<

   cout<<"iterations="<

 

   cout<<"hstry_data="<

   for(inti=0;i<50;i++)

   {

       cout<

   }

 

   cout<<"hstry_sizes="<

 

   return0;

}

 

展开阅读全文
相关资源
猜你喜欢
相关搜索

当前位置:首页 > 工程科技 > 兵器核科学

copyright@ 2008-2022 冰豆网网站版权所有

经营许可证编号:鄂ICP备2022015515号-1