Matlab function with inf in end points
Mostrar comentarios más antiguos
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 comentarios
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
el 4 de Sept. de 2022
Movida: Matt J
el 4 de Sept. de 2022
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Number Theory en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!