error calling a neural network function after m-file is compiled as a .NET library
2 views (last 30 days)
Show older comments
I have a prediction model in the form of a trained neural network, which I load and use with a 3x1 vector input. It works fine in the .m file. Then I compile the .m file using the library compiler and I access the dll file through a C# application and I get an error when it tries to call a prediction from the neural network model.
It is not the format of the input, as I can succesfully take in vectors manipulate them and get them back again in any compiled .m file as a .NET library, but I cannot call the neural network function in the .NET library. Not even if I use a constant vector I created in the .m file. So to sum up; it works as an .m file but as soon as I compile it, it stops working.
The affected code in Visual Studio:
The affecting code in m_SU_column:
Error code:
… MWMCR::EvaluateFunction error …
Array indices must be positive integers or logical values.
Error in => m_SU_column.m at line 61.
If anyone have any idea, it would be greatly appreciated, as I have tried everything I can think of.
0 Comments
Answers (1)
Himanshu
on 13 Oct 2023
Hey Lasse,
I understand that you are trying to pass the input_vec as an index to the net_column_price array, which is the reason you are encountering the error. As the error indicates, you can only pass positive integers and logical values to MATLAB arrays as indices.
Please refer to the following link for detailed documentation about array indexing:
Hope it helps,
Thanks and Regards,
Himanshu
0 Comments
See Also
Categories
Find more on MATLAB Compiler SDK in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!