Question How can I Execute Fuzzy App (.fis) from MALTLAB using C#

moteb.marei

New member
Joined
Sep 10, 2023
Messages
1
Programming Experience
5-10
I have weighted criteria defined in Matlab in the fuzzy app designer.

I want to execute these apps through a Windows form in C#.

how can I link between .fis and C#
 
You can't unless you write code to parse the .FIS file, as well as code to do what MATLAB does with the file; or find a MATLAB library that someone else has written which you can use from your C# code.

The path of least resistance maybe to just use Process.Start() to run MATLAB passing in the .FIS file.

I feel that WinForms is not relevant here. You would have the same issues if you were using WPF or MAUI or Xamarin.
 
Back
Top Bottom