代码 :
byte[] bytes = new byte[fs.Length];
var read = (fs.Read(bytes, 0, Convert.ToInt32(fs.Length)));
long flength = fs.Length;
int fSize = int.Parse(flength.ToString());
MWArray[] in_Arrw = new MWArray[((int)read)];
MWNumericArray arr = new MWNumericArray(fSize, 1, bytes);
ChordRecognizer hj = new ChordRecognizer();
MWArray in_Arr = hj.estimateCost(arr);
fs.Close();
我无法得到它返回的内容in_Arr = hj.estimateCost(arr)
,如果我尝试访问会抛出异常in_Arr[0]
,可以在图像中看到
请帮忙。
快速观看:
.
堆栈跟踪 :
在 MathWorks.MATLAB.NET.Arrays.MWArray.ArrayIndexer(MWArray srcArray, Int32[] indices) 在 MathWorks.MATLAB.NET.Arrays.MWNumericArray.get_Item(Int32[] indices) 在 MathWorks.MATLAB.NET.Arrays.MWArray。 get_Item(Int32[] 索引)