Click here to Skip to main content
Licence CPOL
First Posted 13 Mar 2009
Views 20,107
Bookmarked 11 times

Register.NET C# Classes in Matlab

By | 13 Mar 2009 | Article
One way to use .NET Classes from matlab

Introduction

I encountered this problem when my boss came to me with the idea of creating a new hardware driver for testing our new product. Well, he also wanted that it will be implemented with .NET C# environment. After we came up with the perfect design (that match all the users requirements and our needs) we started implementing the driver engine - only to find out that a new requirement was raised ! The driver had to support Matlab users as well... the rest is history...

In this article, I will try to explain how one can use .NET class from Matlab, in a simple and helpful way. So let me explain it like a "recipe".

1. Code Settings - Define Classes as COM Objects

First, add System.Runtime.IntropServices library to your class component.

Second, add a class interface to all sub-classes in the class project and declare them as a visible Com.

using System.Runtime.InteropServices;
...
namespace EshelProject
{
    [ClassInterface(ClassInterfaceType.AutoDual)]
    [ComVisible(true)]
     public class HW_Parallel : RFComm [...]
}

2. Project Settings

Go to assembly information:

pic1.jpg

Change assembly version to a fixed version - you can modify it manually later. Make assembly Com-Visible:

pic2.jpg

Select Signing and Sign the assembly. Create a strong name key:

pic3.jpg

Uncheck protect my key with a password box and enter a valid key file name - My recommendation is that you use the same name as class name.

4. Rebuild the Solution

Repeat section 1 - 4 for every sub-class / classes in your project.

5. .NET Visual Studio Shell

Register the project into O.S registry by opening Visual Studio command prompt and type:

Regasm <dllName.dll> /tlb

If you want your DLLs to be "pathless" from Matlab environment, then type:

gacutil /i <dllname.dll> 

Use the Class in Matlab

Simply type from Matlab console:

<item name> Actxserver('<namespace>.<class name>')
pic4_small.JPG

To see all your class functions, type:

invoke(<item name>);

And to actually use them, type:

<item name>.<method name>(input values);

Registry Verification and Notes

Go to [start] -> [run] and type regedit. Look for your <namespace>.<class name> under the section HKEY_CLASSES_ROOT. If your project has references to other projects' namespaces, don’t forget to repeat this session for the projects it references.

If you want to debug the class as it runs from mat-lab, open .NET project in Visual Studio and go to:

Debug>Attach to process…>MatLab.exe

pic5.jpg

History

  • 13th March, 2009: Initial post

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

morisson_c

Engineer

Israel Israel

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
Generaldown the israil Pinmemberreza_ali2020004:42 9 Jun '11  
GeneralI am getting following error ... Pinmemberraja24130:05 4 Feb '10  
GeneralRe: I am getting following error ... Pinmembermorisson_c1:27 4 Feb '10  
GeneralRe: I am getting following error ... Pinmemberraja241320:55 4 Feb '10  
GeneralRe: I am getting following error ... Pinmembermorisson_c20:41 6 Feb '10  
GeneralRe: I am getting following error ... Pinmemberraja241317:31 7 Feb '10  
GeneralMATLAB-r2008+C#-2005 Pinmemberwashi_w_z_r7:19 29 Jul '09  
GeneralRe: MATLAB-r2008+C#-2005 [modified] Pinmembermorisson_c4:02 9 Aug '09  
GeneralClear an simple - Thank you! Pinmemberramiyam22:02 16 Mar '09  
GeneralRe: Clear an simple - Thank you! Pinmembermorisson_c22:28 16 Mar '09  
GeneralMATLAB's R2009a now supports calling .Net Assemblies PinmemberStephenrlrl6:48 13 Mar '09  
GeneralRe: MATLAB's R2009a now supports calling .Net Assemblies [modified] Pinmembermorisson_c2:04 14 Mar '09  
GeneralRe: MATLAB's R2009a now supports calling .Net Assemblies PinmemberA. Riazi6:01 17 Mar '09  
GeneralRe: MATLAB's R2009a now supports calling .Net Assemblies Pinmemberandre123459:00 13 Jul '09  
GeneralRe: MATLAB's R2009a now supports calling .Net Assemblies Pinmembermorisson_c11:08 24 Aug '09  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web01 | 2.5.120517.1 | Last Updated 13 Mar 2009
Article Copyright 2009 by morisson_c
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid