基本信息
源码名称:C#调用Matlab生成dll
源码大小:0.34M
文件格式:.zip
开发语言:C#
更新时间:2023-04-20
友情提示:(无需注册或充值,赞助后即可获取资源下载链接)
嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):78630559
本次赞助数额为: 2 元×
微信扫码支付:2 元
×
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
源码介绍
C#调用Matlab生成dll
利用Matlab在矩阵运算上的强大优势,使C#程序在计算大矩阵上获得较大的提速,满足对时间的要求。 由于本代码先于说明文档上传,该说明文档可以在http://www.baidu.com/p/taomengbingxin?from=wenku中查找
文件清单
├── CSMatlab
│ ├── CSMatlab.sln
│ ├── DemoTestInterface
│ │ ├── bin
│ │ │ ├── Debug
│ │ │ └── x86
│ │ │ └── Release
│ │ │ ├── DemoTestInterface.dll
│ │ │ └── DemoTestInterface.pdb
│ │ ├── Class1.cs
│ │ ├── DemoTestInterface.csproj
│ │ ├── obj
│ │ │ ├── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ └── TempPE
│ │ │ └── x86
│ │ │ ├── Debug
│ │ │ │ ├── DemoTestInterface.csproj.FileListAbsolute.txt
│ │ │ │ ├── DemoTestInterface.dll
│ │ │ │ ├── DemoTestInterface.pdb
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── ResolveAssemblyReference.cache
│ │ │ │ └── TempPE
│ │ │ └── Release
│ │ │ ├── DemoTestInterface.csproj.FileListAbsolute.txt
│ │ │ ├── DemoTestInterface.dll
│ │ │ ├── DemoTestInterface.pdb
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ └── TempPE
│ │ └── Properties
│ │ └── AssemblyInfo.cs
│ └── TestMatlabDemo
│ ├── bin
│ │ ├── Debug
│ │ │ └── TestMatlabDemo.vshost.exe
│ │ ├── Release
│ │ │ ├── TestMatlabDemo.vshost.exe
│ │ │ └── TestMatlabDemo.vshost.exe.manifest
│ │ └── x86
│ │ ├── Debug
│ │ │ ├── CSIDemoTest.dll
│ │ │ ├── DemoTestInterface.dll
│ │ │ ├── MatlabMultiplyNative.dll
│ │ │ ├── TestMatlabDemo.exe
│ │ │ ├── TestMatlabDemo.pdb
│ │ │ └── TestMatlabDemo.vshost.exe
│ │ └── Release
│ │ ├── CSIDemoTest.dll
│ │ ├── DemoTestInterface.dll
│ │ ├── MatlabMultiplyNative.dll
│ │ ├── TestMatlabDemo.exe
│ │ ├── TestMatlabDemo.pdb
│ │ ├── TestMatlabDemo.vshost.exe
│ │ └── TestMatlabDemo.vshost.exe.manifest
│ ├── CSIDemoTest.dll
│ ├── DemoTestInterface.dll
│ ├── MatlabMultiplyNative.dll
│ ├── obj
│ │ ├── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ └── TempPE
│ │ ├── Release
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ └── TempPE
│ │ └── x86
│ │ ├── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── TempPE
│ │ │ ├── TestMatlabDemo.csproj.FileListAbsolute.txt
│ │ │ ├── TestMatlabDemo.exe
│ │ │ └── TestMatlabDemo.pdb
│ │ └── Release
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── ResolveAssemblyReference.cache
│ │ ├── TempPE
│ │ ├── TestMatlabDemo.csproj.FileListAbsolute.txt
│ │ ├── TestMatlabDemo.exe
│ │ └── TestMatlabDemo.pdb
│ ├── Program.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ └── TestMatlabDemo.csproj
└── Multiply
├── DemoTestInterface.dll
├── MatlabMultiply
│ ├── distrib
│ │ ├── CSIDemoTest.dll
│ │ ├── MatlabMultiply.dll
│ │ ├── MatlabMultiplyNative.dll
│ │ ├── MatlabMultiply_overview.html
│ │ └── readme.txt
│ └── src
│ ├── CS.cs
│ ├── CSIDemoTest.cs
│ ├── CSIDemoTest.dll
│ ├── CSIDemoTest.xml
│ ├── CSNative.cs
│ ├── MatlabMultiply.dll
│ ├── MatlabMultiplyNative.dll
│ ├── MatlabMultiplyNative.xml
│ ├── MatlabMultiply_overview.html
│ ├── MatlabMultiply.xml
│ ├── mccExcludedFiles.log
│ └── readme.txt
├── MatlabMultiply.prj
├── MatrixMultiply.m
└── SubFun.m
37 directories, 70 files
C#调用Matlab生成dll
利用Matlab在矩阵运算上的强大优势,使C#程序在计算大矩阵上获得较大的提速,满足对时间的要求。 由于本代码先于说明文档上传,该说明文档可以在http://www.baidu.com/p/taomengbingxin?from=wenku中查找
文件清单
├── CSMatlab
│ ├── CSMatlab.sln
│ ├── DemoTestInterface
│ │ ├── bin
│ │ │ ├── Debug
│ │ │ └── x86
│ │ │ └── Release
│ │ │ ├── DemoTestInterface.dll
│ │ │ └── DemoTestInterface.pdb
│ │ ├── Class1.cs
│ │ ├── DemoTestInterface.csproj
│ │ ├── obj
│ │ │ ├── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ └── TempPE
│ │ │ └── x86
│ │ │ ├── Debug
│ │ │ │ ├── DemoTestInterface.csproj.FileListAbsolute.txt
│ │ │ │ ├── DemoTestInterface.dll
│ │ │ │ ├── DemoTestInterface.pdb
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── ResolveAssemblyReference.cache
│ │ │ │ └── TempPE
│ │ │ └── Release
│ │ │ ├── DemoTestInterface.csproj.FileListAbsolute.txt
│ │ │ ├── DemoTestInterface.dll
│ │ │ ├── DemoTestInterface.pdb
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ └── TempPE
│ │ └── Properties
│ │ └── AssemblyInfo.cs
│ └── TestMatlabDemo
│ ├── bin
│ │ ├── Debug
│ │ │ └── TestMatlabDemo.vshost.exe
│ │ ├── Release
│ │ │ ├── TestMatlabDemo.vshost.exe
│ │ │ └── TestMatlabDemo.vshost.exe.manifest
│ │ └── x86
│ │ ├── Debug
│ │ │ ├── CSIDemoTest.dll
│ │ │ ├── DemoTestInterface.dll
│ │ │ ├── MatlabMultiplyNative.dll
│ │ │ ├── TestMatlabDemo.exe
│ │ │ ├── TestMatlabDemo.pdb
│ │ │ └── TestMatlabDemo.vshost.exe
│ │ └── Release
│ │ ├── CSIDemoTest.dll
│ │ ├── DemoTestInterface.dll
│ │ ├── MatlabMultiplyNative.dll
│ │ ├── TestMatlabDemo.exe
│ │ ├── TestMatlabDemo.pdb
│ │ ├── TestMatlabDemo.vshost.exe
│ │ └── TestMatlabDemo.vshost.exe.manifest
│ ├── CSIDemoTest.dll
│ ├── DemoTestInterface.dll
│ ├── MatlabMultiplyNative.dll
│ ├── obj
│ │ ├── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ └── TempPE
│ │ ├── Release
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ └── TempPE
│ │ └── x86
│ │ ├── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── TempPE
│ │ │ ├── TestMatlabDemo.csproj.FileListAbsolute.txt
│ │ │ ├── TestMatlabDemo.exe
│ │ │ └── TestMatlabDemo.pdb
│ │ └── Release
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── ResolveAssemblyReference.cache
│ │ ├── TempPE
│ │ ├── TestMatlabDemo.csproj.FileListAbsolute.txt
│ │ ├── TestMatlabDemo.exe
│ │ └── TestMatlabDemo.pdb
│ ├── Program.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ └── TestMatlabDemo.csproj
└── Multiply
├── DemoTestInterface.dll
├── MatlabMultiply
│ ├── distrib
│ │ ├── CSIDemoTest.dll
│ │ ├── MatlabMultiply.dll
│ │ ├── MatlabMultiplyNative.dll
│ │ ├── MatlabMultiply_overview.html
│ │ └── readme.txt
│ └── src
│ ├── CS.cs
│ ├── CSIDemoTest.cs
│ ├── CSIDemoTest.dll
│ ├── CSIDemoTest.xml
│ ├── CSNative.cs
│ ├── MatlabMultiply.dll
│ ├── MatlabMultiplyNative.dll
│ ├── MatlabMultiplyNative.xml
│ ├── MatlabMultiply_overview.html
│ ├── MatlabMultiply.xml
│ ├── mccExcludedFiles.log
│ └── readme.txt
├── MatlabMultiply.prj
├── MatrixMultiply.m
└── SubFun.m
37 directories, 70 files