Info
此问题已关闭。 请重新打开它进行编辑或回答。
i keep on getting this error even after changing my codes multiple times using .* and etc. it keep on showing that i have prob with my equation when there is no visible problem.
1 次查看(过去 30 天)
显示 更早的评论
i keep on getting this error even after changing my codes multiple times using .* and etc. it keep on showing that i have prob with my equation when there is no visible problem.
Error using .*
Matrix dimensions must agree.
Error in matlabreport>pushbutton2_Callback (line 158)
h=((s.*n.*c)/(1+(s.*n.*c)));
Error in gui_mainfcn (line 95)
feval(varargin{:});
Error in matlabreport (line 42)
gui_mainfcn(gui_State, varargin{:});
Error in
matlab.graphics.internal.figfile.FigFile/read>@(hObject,eventdata)matlabreport('pushbutton2_Callback',hObject,eventdata,guidata(hObject))
Error while evaluating UIControl Callback.
>>
2 个评论
回答(1 个)
Dennis
2019-4-24
Usually the error is straight forward and you can always check the size of your elements with (size) or using the debugger.
In your code it is obvious, that not all 3 variables have the same size (s is a vector with 1000001 elements and the n and c appear to be scalar, unless you somehow enter a vector with a million elements in an edit field).
Worth noting is that the multiplication of a vector with two scalars should work with (.*) or (*). However you converted one of your scalars in a string.
This should do the trick, but maybe consider storing c as number instead:
h=((s.*n.*str2double(c))/(1+(s.*n.*str2double(c))));
2 个评论
Walter Roberson
2019-4-25
That is odd. Could you put a breakpoint there and check class() of h and f and size() of them?
此问题已关闭。
另请参阅
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!