|
From: | jordi lendinez |
Subject: | symbolic integrals |
Date: | Sun, 15 Nov 2015 20:19:29 +0100 |
Hi!
I am trying to do the following in octave: syms x; f(x)=x**9; g(x)=sin(x)**8; int(sym(782757789696*f(x)*g(x))) But it does not works, octave starts to compute but never ends... If I try to integrate only f or only g it works. I tried in different forms to write this, for example: syms x; f(x)=x^9; g(x)=sin(x)^8; int(sym(782757789696*f(x)*g(x))) ------------------------------------------ syms x; int(sym(782757789696*x^9*sin(x)^8)) ------------------------------------------ syms x; int(782757789696*x^9*sin(x)^8) ------------------------------------------ (Allways with package symbolic loaded.) And the result is allways the same that never ends. How can I solve this? Thanks, Regads, Jordi |
[Prev in Thread] | Current Thread | [Next in Thread] |