How to solve error Error using - ?
1 view (last 30 days)
Show older comments
>> uji
Error using -
Matrix dimensions must agree.
Error in fknn (line 81)
distances = (repmat(test(i,:), num_train,1)-data).^2;
Error in classification (line 7)
[y,memberships]=fknn(sampel,training_class, uji,testing_class, K, info);
Error in uji>pushbutton16_Callback (line 219)
classification();
Error in gui_mainfcn (line 95)
feval(varargin{:});
Error in uji (line 42)
gui_mainfcn(gui_State, varargin{:});
Error in
matlab.graphics.internal.figfile.FigFile/read>@(hObject,eventdata)uji('pushbutton16_Callback',hObject,eventdata,guidata(hObject))
Error while evaluating UIControl Callback
1 Comment
KSSV
on 2 Jan 2018
Only you pasted error....how you expect us to know what made you to get the error?
Answers (1)
Walter Roberson
on 2 Jan 2018
Your data is RGB and so is 3 dimensional, but your code expects it to be 2 dimensional.
0 Comments
See Also
Categories
Find more on Migrate GUIDE Apps 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!