简体   繁体   中英

Symbolic Math in MATLAB, solving simple integration

I have a problem with solving a simple integration through MATLAB. I want to solve this symbolic and don't have any problems doing this through other programs.

Well I have this equation:

syms kx

fX(x) = k * e^(-3*x) for 2 <= x <= 6

which I want to integrate from the interval 2 to 6. Then I would solve the equation, so that fX(x) = 1, and solve the equation for k. I type:

S = solve('int(k*exp(-3*x),x,2,6) = 1',k);

And I get following error: Error, (in int) wrong number (or type) of arguments: invalid options or option values passed to indefinite integration. Unknown options: {2, 6}

Why can't the int-function not take my limits?

solve(int(k*exp(-3*x),x,2,6) - 1,k) should work :)

Notice:

  1. don't use = 1 but -1 (that means f(x) - 1 = 0)
  2. don't use ''

The result for me is:

-(3*exp(6))/(1/exp(12) - 1)

I also tried to solve it by hand and got the same result.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM