Info
此问题已关闭。 请重新打开它进行编辑或回答。
Problem using fzero in classed method
1 次查看(过去 30 天)
显示 更早的评论
Hello, I am trying to apply fzero() to a function defined as Methods (Access = private) in a classdef, without success, here attached the .m file.
The class myclass contains: - two public methods(oper and testZero) - two private methods (setb and valzero)
I have a problem with using testZero which applies fzero to valzero. I suppose I am declaring in a wrong way the fzero parameters.
Could you please advice?
Thanks a lot in advance Best regards, P
0 个评论
回答(1 个)
Walter Roberson
2015-11-29
av=fzero(@valzero,obj,2); is only going to pass one parameter to valzero, but you defined valzero as needing two parameters, obj and a. Perhaps you want
av = fzero(@(x) valzero(obj,x), 2);
0 个评论
此问题已关闭。
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!