Home
last modified time | relevance | path

Searched refs:is_meromorphic (Results 1 – 12 of 12) sorted by relevance

/dports/math/py-sympy/sympy-1.9/sympy/functions/special/tests/
H A Dtest_bessel.py414 assert besselj(2, x).is_meromorphic(x, 1) == True
415 assert besselj(2, x).is_meromorphic(x, 0) == True
421 assert besselk(0, x).is_meromorphic(x, 1) == True
422 assert besselk(2, x).is_meromorphic(x, 0) == True
423 assert besseli(0, x).is_meromorphic(x, 1) == True
424 assert besseli(2, x).is_meromorphic(x, 0) == True
425 assert bessely(0, x).is_meromorphic(x, 1) == True
426 assert bessely(0, x).is_meromorphic(x, 0) == False
427 assert bessely(2, x).is_meromorphic(x, 0) == True
429 assert hankel1(0, x).is_meromorphic(x, 0) == False
[all …]
/dports/math/giacxcas/giac-1.6.0/src/
H A Dintgab.h34 int is_meromorphic(const gen & g,const gen & x,gen &a,gen &b,gen & P,GIAC_CONTEXT);
H A Dintgab.cc67 int is_meromorphic(const gen & g,const gen & x,gen & a,gen & b,gen & P,GIAC_CONTEXT){ in is_meromorphic() function
75 if (!is_meromorphic(*it,x,a,b,P,contextptr)) in is_meromorphic()
588 int typeint=rational?2:is_meromorphic(g,x,A,B,P,contextptr); in intgab_r()
1886 int type=is_meromorphic(g,x,A,B,P,contextptr); in in_sumab()
H A Dgiac.i537 int is_meromorphic(const gen & g,const gen & x,gen &a,gen &b,gen & P,giac::context * );
H A Dgiacjs.i532 int is_meromorphic(const gen & g,const gen & x,gen &a,gen &b,gen & P,giac::context * );
H A Dgiac_wrap.cxx8310 …result = (int)giac::is_meromorphic((giac::gen const &)*arg1,(giac::gen const &)*arg2,*arg3,*arg4,*… in Java_javagiac_giacJNI_is_1meromorphic()
/dports/math/py-sympy/sympy-1.9/sympy/core/tests/
H A Dtest_expr.py628 assert f.is_meromorphic(x, 0) is True
629 assert f.is_meromorphic(x, 1) is True
630 assert f.is_meromorphic(x, zoo) is True
633 assert g.is_meromorphic(x, 0) is False
634 assert g.is_meromorphic(x, 1) is True
635 assert g.is_meromorphic(x, zoo) is False
639 assert h.is_meromorphic(x, 0) is False
640 assert h.is_meromorphic(x, 1) is True
644 assert e.is_meromorphic(x, 0) is False
645 assert e.is_meromorphic(x, 1) is False
[all …]
/dports/math/py-sympy/sympy-1.9/sympy/series/
H A Dlimits.py265 if e.is_meromorphic(z, z0):
/dports/math/py-sympy/sympy-1.9/sympy/functions/elementary/
H A Dtrigonometric.py2258 if not g.is_meromorphic(x, 0): # cannot be expanded
2270 if not g.is_meromorphic(x, 0): # cannot be expanded
2468 if not g.is_meromorphic(x, 0): # cannot be expanded
2480 if not g.is_meromorphic(x, 0): # cannot be expanded
/dports/math/py-sympy/sympy-1.9/sympy/core/
H A Dadd.py617 return _fuzzy_group((arg.is_meromorphic(x, a) for arg in self.args),
H A Dmul.py1271 return _fuzzy_group((arg.is_meromorphic(x, a) for arg in self.args),
H A Dexpr.py2722 def is_meromorphic(self, x, a): member in Expr