Matlab function with inf in end points
Ältere Kommentare anzeigen
hi
I have a function define in an range [ a, b ] the function is ιnf at end point F(a)=inf F(b)=inf
there a method to eliminate this singular point?
thank
George
2 Kommentare
You can rewrite F to give whatever alternative value you wish at a and b, e.g,
tand(89)
tand(90)
F(89)
F(90)
function f=F(x)
f=tand(x);
if isinf(f), f=0; end
end
but whether that will solve your ultimate problem, we've no way of knowing, without more context.
george veropoulos
am 4 Sep. 2022
Verschoben: Matt J
am 4 Sep. 2022
Akzeptierte Antwort
Weitere Antworten (0)
Kategorien
Mehr zu Number Theory finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!