Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
2answers
2k views

Is there an exponent operator in C#?

For example, does an operator exist to handle this? float Result, Number1, Number2; Number1 = 2; Number2 = 2; Result = Number1 (operator) Number2; In the past the ^ operator has served as an ...
4
votes
3answers
228 views

how to combine exponents? (x**a)**b => x**(a*b)?

how to simplify exponents in equations in sympy from sympy import symbols a,b,c,d,e,f=symbols('abcdef') j=(a**b**5)**(b**10) print j (a**(b**5))**(b**10) #ans even after using expand simplify # ...
4
votes
6answers
662 views

Calculating powers (e.g. 2^11) quickly [closed]

Possible Duplicate: The most efficient way to implement an integer based power function pow(int, int) How can I calculate powers with better runtime? E.g. 2^13. I remember seeing ...
2
votes
2answers
326 views

Rounding to a power of 10

I have a quick and easy(I think!) question for you guys. I have a variable, 'tauMax', that I want to round up to the nearest power of ten(1, 10, 100, 1000...). I am using the below expression to find ...
1
vote
4answers
2k views

Fast method of calculating square root and power?

C#'s Math class does roots and powers in double only. Various things may go a bit faster if I add float-based square-root and power functions to my Math2 class (Today is a relaxation day and I find ...
1
vote
1answer
238 views

Drawing the curve y = 1 - x ^ 4 in Processing/Java

I understand that y = x ^ n would be float y = (x, n) but what if i wanted to draw the curves y = 1 - x ^ 4 y = (1-x) ^ 4 y = 1-(1-x) ^ 4 Here's the code i wrote but it doesn't draw the curve ...
0
votes
1answer
87 views

Negative Number to Non-Integer Power in Javascript

I'm writing a script that has to do something like this at one point: Math.pow(-2,1.5). The result should be approximately -2.82843, but instead, Javascript returns NaN. (I tried this in both Google ...
0
votes
4answers
34 views

Sorting columns containing exponents in python

I have created mylist that reads out: [('GCK', '3e-12'), ('ist', '6e-30'), ('iso', '5e-15'), ('tig', '5e-77')] when I run the sort function: mylist.sort(key=operator.itemgetter(1)) it sorts ...
0
votes
4answers
87 views

C Checking or Converting Exponents

I have exponents in the represented format of: "1.45e004" or "1.45e-04" or "-1.45e004". [please note the minus sign in the third one] Checking (==, !=, >, <, <=, >=, etc) does not work on ...