Jan 11, 2003 #1 wolfbrother Technical User Jun 14, 2002 10 US Hi, I'm trying to write a function to calculate with exponets and I can't find the right syntax to get it to work right? any suggestions? Thanks, David
Hi, I'm trying to write a function to calculate with exponets and I can't find the right syntax to get it to work right? any suggestions? Thanks, David
Jan 11, 2003 Thread starter #2 wolfbrother Technical User Jun 14, 2002 10 US An example of the function I need to perform is: C=trough * e exponated by (-ke*tt) Upvote 0 Downvote
Jan 11, 2003 #3 PaulBricker Programmer Sep 25, 2002 3,554 US Is this what you are looking for C=trough * e ^(-ke*tt) Paul Upvote 0 Downvote
Jan 11, 2003 #4 chrissie1 Programmer Aug 12, 2002 4,517 BE try exp(number) "What a wonderfull world" - Louis armstrong Upvote 0 Downvote
Jan 11, 2003 #5 PaulBricker Programmer Sep 25, 2002 3,554 US If what you want is 2 raised to the 2nd power then use the carat sign ^ 2^2 = 4 2^3 = 8 2^4 = 16 If you want something else then look at the Exp() function. It returns a value that I'm not familiar with. Paul Upvote 0 Downvote
If what you want is 2 raised to the 2nd power then use the carat sign ^ 2^2 = 4 2^3 = 8 2^4 = 16 If you want something else then look at the Exp() function. It returns a value that I'm not familiar with. Paul