Community Profile

photo

Tarik


Active since 2013

Followers: 0   Following: 0

Message

I am practicing solving transcendental equations in matlab

I have the given equation and I want to solve for t

1.6*10^8 = t^3 * e^(-12993.03/t)

Here is my matlab code

syms t;
s = '160750000/(t*t*t)= exp(-12993.03/t)'
solve(s)

When I do this i get

4331.01/lambertw(0, (433101*160750000^(2/3))/16075000000)
4331.01/lambertw(0, (433101*exp((pi*4*i)/3 - log(160750000)/3))/100)
4331.01/lambertw(0, (433101*exp((pi*2*i)/3 - log(160750000)/3))/100)

But the correct solution should be 2701

What am I doing wrong in my code?

Statistics

  • Thankful Level 1

View badges

Feeds

View by

Question


Clearing GUI axis difficulty
I have a GUI that has two axis. The first axis is my original image and the second axis is my filtered image where I am able to ...

10 years ago | 2 answers | 0

2

answers

Question


Reseting Controls in Matlab GUI
I am trying to create functionality in my code where I am able to reset certain aspects of my GUI. I have created a reset functi...

10 years ago | 0 answers | 0

0

answers

Question


Create a transfer function that creates a bandreject filter
Hi I am attempting to create and bandreject filter that takes out noise from a signal via a transfer function. I have read onlin...

11 years ago | 0 answers | 0

0

answers

Question


How to solve transcendental equations in matlab
I am practicing solving transcendental equations in matlab I have the given equation and I want to solve for t 1.6*10^8 = ...

11 years ago | 3 answers | 0

3

answers