.Net c# sdk - MWStructArray.GetField(string fieldName) Rounding
2 ビュー (過去 30 日間)
古いコメントを表示
I am trying to read a matlab [48x20 double] matrix via .Net.
In Matlab I see the values as ...
ans =
Columns 1 through 9
0.000800000000000 0.005200000000000 0.005000000000000 0.005000000000000 0.005000000000000 0.005000000000000 0 0 0
0.000800000000000 0.005200000000000 0.005200000000000 0.005150000000000 0.005200000000000 0.005200000000000 0
but after conversion I am seeing this in .Net. Notice .00515 -> .0052
{ Columns 1 through 7
0.0008 0.0052 0.0050 0.0050 0.0050 0.0050 0
0.0008 0.0052 0.0052 0.0052 0.0052 0.0052
My code basically looks like:
var array = ((MWNumericArray)matlabObj.GetField(fieldName));
Am I doing something wrong? Is there a better way to read this in?
0 件のコメント
回答 (4 件)
Steven Lord
2015 年 7 月 17 日
So you generated this application from MATLAB code using MATLAB Compiler SDK? This isn't a separate piece of .NET code that you're invoking from both MATLAB and .NET and seeing different results?
What if you add the command "format longg" to the code from which you generated your application? My guess is that previously in your MATLAB session you changed the display format using that FORMAT call or something similar, and the application generated using MATLAB Compiler SDK is using the default display format (format short.)
Alternately, if you want more specific control, display the values in MATLAB using FPRINTF (the display from the generated application should then be the same as the display in MATLAB.)
0 件のコメント
Dasharath Gulvady
2015 年 7 月 21 日
As Steven has already mentioned, this may be because of the usage of "format" in MATLAB, which results in higher precision. In your C# application, you may be storing the values in double.
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!