0

运行我的代码几个小时后,它已经停止并且显示了下面的消息。

Exception in thread "FileDecorationCache request queue" java.lang.NullPointerException
    at com.mathworks.mlwidgets.explorer.model.table.UiFileList.fireListeners(UiFileList.java:450)
    at com.mathworks.mlwidgets.explorer.model.table.UiFileList.access$000(UiFileList.java:43)
    at com.mathworks.mlwidgets.explorer.model.table.UiFileList$1.stateChanged(UiFileList.java:118)
    at com.mathworks.util.MulticastChangeListener.stateChanged(MulticastChangeListener.java:26)
    at com.mathworks.mlwidgets.explorer.model.FileDecorationCache$1.stateChanged(FileDecorationCache.java:101)
    at com.mathworks.util.MulticastChangeListener.stateChanged(MulticastChangeListener.java:26)
    at com.mathworks.mlwidgets.explorer.model.FileDecorationModel$2$2.run(FileDecorationModel.java:299)
    at com.mathworks.mlwidgets.explorer.extensions.basic.DefaultFileInfoProvider$4.run(DefaultFileInfoProvider.java:91)
    at com.mathworks.mlwidgets.explorer.model.FileDecorationModel$3$1.run(FileDecorationModel.java:342)
    at com.mathworks.util.RequestQueue.execute(RequestQueue.java:105)
    at com.mathworks.util.RequestQueue.access$000(RequestQueue.java:23)
    at com.mathworks.util.RequestQueue$2.run(RequestQueue.java:76)
    at java.lang.Thread.run(Unknown Source)   
Subscripted assignment between dissimilar structures.

有谁知道这意味着什么?

特别是..不同结构之间的下标分配是什么意思???

从星期一开始,我一直在尝试解决这个问题,但我仍然不知道发生了什么。救救我

谢谢,布鲁诺!


部分代码:

我有一个

function Polynome(output, inputs)
output = {'a'}
inputs = {'b', 'c', 'd', 'e'}

并有一个数据库,其中每列都与每个字母等效,因此此代码将搜索谁是列并放入 polyfitn 函数中,表示y = outputx = inputs

对于我使用的另外 2 个数据库,它运行得非常好,正如我所愿。但现在它不起作用并向我显示该错误。

4

1 回答 1

0

Subscripted assignment between dissimilar structures当您尝试执行以下操作时,通常会发生错误-

>> s.a = 1;
>> s.b = 2;
>> t.a = 1;
>> s(1) = t   // For this to work, s and t must have the same fields
??? Subscripted assignment between dissimilar structures.

检查您在代码中的结构之间进行下标分配的位置,并查看您分配的结构是否具有相同的字段。

于 2013-07-04T13:47:07.653 回答