03-18-2023 07:45 AM
I am trying integrate Matlab with LabVIEW through .net assembly as I can easily make LabVIEW executable without installing Matlab in target system. But I am experiencing some issue. Kindly help me resolving this:
In this code, I am experiencing an error which is:
Following is the Matlab Code:
Solved! Go to Solution.
03-20-2023 06:27 AM
03-20-2023 08:20 AM
The error states "too many output arguments" - which is due to the fact that your matlab function has no output arguments at all.
You need to declare it as:
function Q = Changepoint(Curvature)
Q = [...]
end