This is a follow up screencast on Matlab Neural Network in C# Application (http://baijumax.blogspot.com/2009/05/matlab-neural-network-in-c-application.html),users often face issues with passing array from c# to matlab and based on their feedback I have decided to prepare this
screen cast in which I have shown simple solution to get around with syntactical issues of passing numeric array from c# to matlab by using simple string array.
Hi Baiju,
ReplyDeleteI think by mistake u posted WPF multi threaded application webcast again.
Regards,
Mukul
Mukul ,
ReplyDeleteI have updated the video.
Cheers
BAIJU K M
Thanks Rahul.
ReplyDeleteI have checked the site you have mentioned,It's a good c# sharp resource and keep up the good work .
Cheers,
BAIJUMAX
hi baijumax...
ReplyDeletei want to ask u someting....can u help me in create wireless network using high altitude platforms(HAPs)...it really important...
Hi Mischoc2,
ReplyDeleteI have limited/no knowledge on wirless n/w domain , sorry couldn't able to help much on your query.
Cheers
BAIJUMAX
hi baijumax, i am a student from University Malaya, M'sia. I am given a project to which asked to produce a GUI for secant method(a numerical method to find roots of equation), we already write the code for matlab, but we just don't know how to make it in GUI. could you teach me how to do it?
ReplyDeleteHi Darenbent,
ReplyDeleteYou can use matlab 'guide' tool to create GUI in matlab.please watch my screencast on the same to get started http://baijumax.blogspot.com/2009/05/creating-gui-applications-with-matlab.html.
Cheers,
BAIJU K M
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
darenbent said...
hi baijumax, i am a student from University Malaya, M'sia. I am given a project to which asked to produce a GUI for secant method(a numerical method to find roots of equation), we already write the code for matlab, but we just don't know how to make it in GUI. could you teach me how to do it?
is it possible,create ,train,and simulate matlab neural networks invoking there corresponding dll files within C#.net application.
ReplyDeleteThis is very slow for large matrices so the comment at the end is not founded.
ReplyDeleteTo pass large matrices (like images) to matlab .net assemblies you need to build a csharp Array object, this can be defined by a simple:
Array array = new float[1000, 1000];
Set its values as required and then just run:
MWArray MatLabInputImage = new MWNumericArray(array);
Followed by:
MatLab.myMatLabFoo(MalLabInputImage);
I really need your help :(
ReplyDeleteMy code is:
MWNumericArray input = null;
MWNumericArray output = null;
MWArray[] result = null;
Array d = new float[2, 1];
MWArray lol = new MWNumericArray(d);
result = obj.makesquare(lol);
output = (MWNumericArray)result[0];
Console.WriteLine(output);
with a example that i just pass a int it's work but now i need to pass a vector :s
and i got this error:
Error 1 Cannot implicitly convert type 'MathWorks.MATLAB.NET.Arrays.MWArray' to 'MathWorks.MATLAB.NET.Arrays.MWArray[]' C:\Users\Ze\documents\visual studio 2010\Projects\testematlab\testematlab\Form1.cs 43 22 testematlab
PS: Thanks for all!
ReplyDeletehow to create a calculator webservice in matlab. please share me the detailed steps or video
ReplyDelete