用Octave求不定积分基本公式(13)
广告
{{v.name}}
不定积分基本公式(13) \(\int{ {\rm sec}x{\rm tan}x }{\rm d}x={\rm sec}x+C\)
求\(\int{ {\rm sec}x{\rm tan}x }{\rm d}x\).
程序代码如下
function [text_result, numeric_result] = func67()
    pkg load symbolic;
    x = sym('x');
    f = int(sec(x)*tan(x), x);
    text_result = ["\n", disp(f)];
    numeric_result = eval(f);
endfunction
结果如下
>> [text_result, numeric_result] = func67()
text_result =
      1
    ──────
    cos(x)

numeric_result = (sym)

      1
    ──────
    cos(x)
友链