用Octave求不定积分基本公式(3)
广告
{{v.name}}
不定积分基本公式(3) \(\int{\frac{1}{x} }{\rm d}x={\rm ln}\lvert{x}\rvert +C\)
求\(\int{x^2}{\rm d}x\).
程序代码如下
function [text_result, numeric_result] = func57()
pkg load symbolic;
x = sym('x');
f = int(1/x, x);
text_result = ["\n", disp(f)];
numeric_result = eval(f);
endfunction
结果如下
>> [text_result, numeric_result] = func57()
text_result =
log(x)
numeric_result = (sym) log(x)