我附带把matlab配置过程也给大家上传上来。
【转载】终于学会C#调用matlab函数了,原来这么简单(也可以下载附件查看)
自己的配置:

(1)Microsoft Visual Studio 2005

(2)Matlab R2009a

(3)iis 6.0

第一步:

首先安装Matlab;

安装Visual Studio 2005或者更高版本;

安装MCRInstall.exe,我安装完Matlab之后在这里找得的:D:"Program Files\MATLAB\R2009b\toolbox\compiler\deploy\win32

点击:我的电脑-属性-高级-环境变量-系统变量-PATH-编辑,在变量值输入框中,不要删除以前的字符串,在最前面加入MCR的安装路径,如:D:"Program Files\MATLAB\MATLAB Compiler Runtime\v80\bin\win32; 然后确定、保存、重启电脑。(我就是不知道需要这两步,老是在C#创建Matlab的访问对象时,出现:“xxx的类型初始值设定项引发异常。”,完全不理解是什么原因,被耽搁了大量时间,直到安装了Matlab 2008b,仔细阅读它生成的readme.txt才知道)

第二步: 在matlab的Command window中输入mbuild -setup显示如下

>> mbuild -setup

Please choose your compiler for building standalone MATLAB applications: Would you like mbuild to locate installed compilers [y]/n? n %选择n

Select a compiler:

[1] Lcc-win32 C 2.4.1

[2] Microsoft Visual C++ 6.0

[3] Microsoft Visual C++ .NET 2003

[4] Microsoft Visual C++ 2005

[5] Microsoft Visual C++ 2005 Express Edition

[6] Microsoft Visual C++ 2008

[0] None Compiler: 4 %选择4,其他编译器可以选相应的选项,我没有验证过

The default location for Microsoft Visual C++ 2008 compilers is C:\Program Files\Microsoft Visual Studio 8, but that directory does not exist on this machine.

Use C:\Program Files\Microsoft Visual Studio 8.0 anyway [y]/n? n%选择n

Please enter the location of your compiler: [C:\Program Files\Microsoft Visual Studio 9] D:\Program Files\Microsoft Visual Studio 8.0 %选择您自己的当前安装路径

Please verify your choices: Compiler: Microsoft Visual C++ 2005 Location: D:\Program Files\Microsoft Visual Studio 8.0 Are these correct [y]/n? y %看上述信息,如果正确选择y

Warning: MBUILD requires that the Microsoft Visual C++ 8.0 directories "VC" and "Common7" be located within the same parent directory. MBUILD setup expected to find directories named "Common7" and "VC" in the directory: "C:\Program Files\Microsoft Visual Studio 8". Trying to update options file: C:\Documents and Settings\Administrator\Application Data\MathWorks\MATLAB\R2009a\compopts.bat From template: D:\PROGRA~1\MATLAB\R2009a\bin\win32\mbuildopts\msvc80compp.bat Done . . . 到此matlab编译器设置成功。

第三步: 编写m文件:

function y=mymagic(x)

y=magic(x);

第四步:建立项目:

在matlab中点击“File- new -Development Project” 自己选择项目保存目录和项目名,如E:"和magicpro.prj 类 型选择.NET Component,如果你要生成更通用的COM组件,选择Generic COM Component。添加刚才的m文件到这个新建的项目中去。点击Build the project按钮(这个按钮的图标和微软开发工具的Build图标一样)或者右击选择“build”,等待3,4分钟。建立成功。

mcc -W 'dotnet:magicpro,Magicpro,0.0,private' -d 'E:\magicpro\src' -T 'link:lib' -v 'class{Magicpro:\work\mymagic.m}' Compiler version: 4.10 (R2009a) Processing include files... 2 item(s) added. Processing directories installed with MCR... The file E:\magicpro\src\mccExcludedFiles.log contains a list of functions excluded from the CTF archive. 2 item(s) added. Generating MATLAB path for the compiled application... Created 41 path items. Begin validation of MEX files: Sat Mar 27 09:22:22 2010 End validation of MEX files: Sat Mar 27 09:22:22 2010 Parsing file "D:\work\mymagic.m" (Referenced from: "Compiler Command Line". Parsing file "D:\Program Files\MATLAB\R2009a\toolbox\compiler\deploy\deployprint.m" (Referenced from: "Compiler Command Line". Parsing file "D:\Program Files\MATLAB\R2009a\toolbox\compiler\deploy\printdlg.m" (Referenced from: "Compiler Command Line". Deleting 0 temporary MEX authorization files. Generating file "E:\magicpro\src\Magicpro.cs". Generating file "E:\magicpro\src\MagicproNative.cs". Generating file "E:\magicpro\src\readme.txt". Generating file "E:\magicpro\src\dotnet_mcc_component_data.cs". Executing command: C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\csc.exe /nologo /optimize /doc:"E:\magicpro\src\magicpro.xml" /t:library /r:"D:\Program Files\MATLAB\R2009a\toolbox\dotnetbuilder\bin\win32\v2.0\MWArray.dll" /resource:"E:\magicpro\src\magicpro.ctf" /out:"E:\magicpro\src\magicpro.dll" "E:\magicpro\src\Magicpro.cs" "E:\magicpro\src\dotnet_mcc_component_data.cs" Executing command: C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\csc.exe /nologo /optimize /doc:"E:\magicpro\src\magicproNative.xml" /t:library /r:"D:\Program Files\MATLAB\R2009a\toolbox\dotnetbuilder\bin\win32\v2.0\MWArray.dll" /resource:"E:\magicpro\src\magicpro.ctf" /out:"E:\magicpro\src\magicproNative.dll" "E:\magicpro\src\MagicproNative.cs" "E:\magicpro\src\dotnet_mcc_component_data.cs" Copying: E:\magicpro\src\magicpro.dll -> E:\magicpro\distrib Copying: E:\magicpro\src\magicproNative.dll -> E:\magicpro\distrib Copying: E:\magicpro\src\readme.txt -> E:\magicpro\distrib Compilation completed successfully. The output is located in E:\magicpro\distrib. You can package the component by clicking on the "Package" icon in the Deployment Tool toolbar, or by clicking the Tools->Package menu when the Deployment Tool panel is selected. To include additional files in the package, click Project->Settings).

第五步: 打开2005.新建网站 新建C#网页添加引用:

选择.NET,选择MathWorks,.NET MWArrays API字样的一个组件添加引用:选择浏览,选择刚才用Deployment新建的项目的E:"magicpro\distrib目录的magicpro.dll文件 . 设置页面,一个文本框(输入魔方的维数)一个按钮(提交),一个标签(显示魔方)。 代码如下:

using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using MathWorks.MATLAB.NET.Arrays;
using magicpro;

public partial class Default2 : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
        Label1.Visible = false;
    }

protected void Button1_Click(object sender, EventArgs e)
    {
        Label1.Visible = true;
        string html_value = "<table >";
        int input = Convert.ToInt32(TextBox1.Text);
        magicpro.Magicpro m = new Magicpro();
        MWNumericArray x = new MWNumericArray(input);
        MWArray[] argsout = new MWArray[1];
        MWArray[] argsin = new MWArray[] { x };
        m.mymagic(1, ref argsout, argsin);
        MWNumericArray y = argsout[0] as MWNumericArray;
      
        TextBox1.Visible = false;
        Button1.Visible = false;
        for (int i = 1; i <= y.Dimensions[0]; i++)
        {
            html_value += "<tr>";
            for (int j = 1; j <= y.Dimensions[1]; j++)
            {
                html_value += "<td>";
                html_value += y[i, j];
                html_value+="</td>";
            }
            html_value += "</tr>";
        }
        html_value += "</table>";
        Label1.Text = html_value;
    }
}

运行输入4.点击按钮出现4阶魔方:

16 2 3 13

5 11 10 8

9 7 6 12

4 14 15 1 成功

C# MATLAB混合编程的更多相关文章

  1. C++和MATLAB混合编程-DLL

    先小话一下DLL,DLL是动态链接库,是源代码编译后的二进制库文件和程序接口,和静态链接库不同的是,程序在编译时并不链接动态链接库的执行体,而是在文件中保留一个调用标记,在程序运行时才将动态链接库文件 ...

  2. java matlab混合编程之返回值Struct类型

    java matlab混合编程的时候当返回值是Struct类型(matlab中的返回类型)如何来取得(java中)其值? 上网找,看到这个网页:http://www.mathworks.cn/cn/h ...

  3. WPF(C#)与MATLAB混合编程

    WPF(C#)与MATLAB混合编程 WPF可以为开发者提供便捷地构建用户交互界面的解决方法,而matlab则在科学计算方面有着无与伦比的优势,因此在一些需要将科学算法转换为应用软件的项目中,需要应用 ...

  4. VC 与Matlab混合编程之引擎操作详解

    Visual C++ 是当前主流的应用程序开发环境之一,开发环境强大,开发的程序执行速度快.但在科学计算方面函数库显得不够丰富.读取.显示数据图形不方便. Matlab 是一款将数值分析.矩阵计算.信 ...

  5. VS/Qt C++和Matlab混合编程

    最近两天在搞C++和Matlab混合编程,这个中间过程真是让人心酸啊,最后还是搞定成功!现在把这个过程记录一下. 首先自己的电脑本来就安装着matlab2013b,按着网上的说法首先需要输入!mcc, ...

  6. C++和MATLAB混合编程求解多项式系数(矩阵相除)

    摘要:MATLAB对于矩阵处理是非常高效的,而C++对于矩阵操作是非常麻烦的,因而可以采用C++与MATLAB混合编程求解矩阵问题. 主要思路就是,在MATLAB中编写函数脚本并使用C++编译为dll ...

  7. matlab混合编程向导(vc,vb,.net...)

    一.matlab与vc混编  1.通过mcc将matlab的m文件转化为cpp,c文件或dll供vc调用:     这方面的实现推荐精华区Zosco和ljw总结的方法(x-6-1-4-3-1和2)  ...

  8. Matlab混合编程

    Matlab混合编程 混合编程目的 在Matlab中采用混合编程目的主要包括 利用已有的函数库,避免重复工作 加速计算,特别是减少循环所用时间 利用GPU等进行异构编程 混合编程方法-mex函数 目前 ...

  9. C#Matlab混合编程类 初始化问题解决方法

    ************** 异常文本 ************** System.TypeInitializationException: “myPlus.matClass”的类型初始值设定项引发异 ...

  10. 国内第一部C#.Net调用Matlab混合编程视频教程

       本博客所有文章分类的总目录:[总目录]本博客博文总目录-实时更新 Matlab和C#混合编程文章目录:[目录]Matlab和C#混合编程文章目录 一.视频说明 2014年的5.1,我将这套视频教 ...

随机推荐

  1. git服务器的简单搭建

    安装git 安装git,参考:https://git-scm.com/book/zh/v1/%E8%B5%B7%E6%AD%A5-%E5%AE%89%E8%A3%85-Git 创建git仓库 使用ro ...

  2. 004ICMP-type对应表

    一次在某个防火墙配置策略里看到如下的代码: iptables -A INPUT -p icmp --icmp-type 8 -j ACCEPT iptables -A FORWARD -p icmp ...

  3. Java多线程之赛跑游戏(含生成exe文件)

    在JavaSE中,多线程是一个重要的内容. 我们要了解多线程的概念,就要先了解进程的概念:要了解进程的概念,就离不开操作系统的概念. 在一台正常运行的电脑中,计算机硬件(如CPU.内存.硬盘.网卡.显 ...

  4. Oracle Spatial操作geometry方法

    Oracle Spatial中SDO_GEOMETRY类型: CREATE TYPE SDO_GEOMETRY AS OBJECT( SDO_GTYPE NUMBER,--几何类型,如点线面 SDO_ ...

  5. HDU 1358 Period(KMP计算周期)

    题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1358 题目大意:给你一串字符串,判断字符串的前缀是否由某些字符串多次重复而构成. 也就是,从第1个字母 ...

  6. PyCharm中 ImportError: No module named tensorflow

    安装完 tensorflow 后在 PyCharm 中导入时显示找不到,可设置如下: PyCharm 中依次打开 File -> Settings -> Project:PycharmPr ...

  7. Java Hibernate和.Net EntityFramework 如何在提交事务之前 就拿到需要新增实体的Id

    在Hibernate中很容易做到这一点,因为hibernate在事务commit之前  还有一个save方法,这个save方法就可以持久化并且拿到Id. 但是EF并不可以呀,EF是将对象标记为新增状态 ...

  8. HTML5 Video/Audio播放本地文件

    这段时间经常看到开发者在反复询问同一个问题,为什么通过设置src属性,不能播放本地的媒体文件?例如video.src=”D:\test.mp4”. 这是因为浏览器中的JavaScript不能直接直接访 ...

  9. learn_requests

    # -*- coding: utf-8 -*- import requests URL_IP = 'http://localhost:8000/ip' URL_GET = 'http://localh ...

  10. 长安大学第四届ACM-ICPC“迎新杯”程序设计竞赛-重现赛 D - 新卡片游戏

    题目描述