Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
4answers
2k views

Calculating e^x without using any functions

We are supposed to calculate e^x using this kind of formula: e^x = 1 + (x ^ 1 / 1!) + (x ^ 2 / 2!) ...... I have this code so far: while (result >= 1.0E-20 ) { power = power * input; ...
7
votes
3answers
177 views

Real-world example of exponential time complexity

I'm looking for an intuitive, real-world example of a problem that takes (worst case) exponential time complexity to solve for a talk I am giving. Here are examples for other time complexities I have ...
5
votes
2answers
285 views

Dynamic Programming in Mathematica: how to automatically localize and / or clear memoized function's definitions

In Mathematica 8.0, suppose I have some constants: a:=7 b:=9 c:=13 d:=.002 e:=2 f:=1 and I want to use them to evaluate some interlinked functions g[0,k_]:=0 g[t_,0]:=e ...
4
votes
3answers
455 views

Running Time Complexity of my Algorithm - how do i compute this and further optimize the algorithm?

I designed a recursive algorithm and wrote it down in Python. When I measure the running time with different parameters, it seems to take exponential time. Furthermore; it takes more than half an hour ...
3
votes
2answers
131 views

How to redefine ^ In Matlab?

How to redefine the exponential function ^ In MATLAB? x.^y to sign(x).*abs(x.^y))
3
votes
1answer
191 views

data compression - machine learning for exponential distribution

Are there any machine learning algorithms, prediction models that can help me compress exponentially distributed data? I have already encoded the file using golomb codes, which definitely saves tons ...
3
votes
1answer
416 views

Kalman Filter Vs Exponential Filter

I was wondering, what are the advantages and disadvantages of Kalman Filter and Exponential Filter? I have a multi-sensor fusion problem and I'm trying to decide which method to choose. I think, ...
3
votes
2answers
222 views

PHP outputting numbers in exponential form

When i'm outputting some of my double variables they're being written in exponential form using fwrite. Can i set some defaults in PHP where whenever a variable is displayed (copied or stored) it ...
3
votes
4answers
2k views

C# Parse a Number from Exponential Notation

I need to parse the string "1.2345E-02" (a number expressed in exponential notation) to a decimal data type, but Decimal.Parse("1.2345E-02") simply throws an error
2
votes
4answers
111 views

How to find the Longest Common Subsequence in Exponential time?

I can do this the proper way using dynamic programming but I can't figure out how to do it in exponential time. I'm looking to find the largest common sub-sequence between two strings. Note: I mean ...
2
votes
1answer
120 views

Java generate random numbers using Possion/Gaussian/Exponential/Geometric/Uniform distribution

How can I generate a random number in Java using different distributions within a range(0-99). I know the standard Java.util.Random getNextInt() uses Uniform and PRNG. How would I use nextGaussian? ...
2
votes
0answers
93 views

How can I do exponential regression in Javascript?

can someone tell me how to do exponential regression or point me to a good explaination? I want to implement it in a javascript tool. I know that theoretically, I have to create a discrepancy ...
2
votes
3answers
102 views

How to get (-8)^0.333333 = -2 in MATLAB?

Using MATLAB exponential function: (-8)^0.333333 ans = 1.0000 + 1.7320i How to get (-8)^0.333333 = -2 instead? x=-10:-1; x.^0.333333 How to get real value? How to redefine ^: x.^y to ...
2
votes
2answers
570 views

Python Scientific Notation precision normalizing

I've been looking everywhere for an answer without success, but hopefully I'm just overlooking something simple. I am fairly new to Python. My goal is simply to convert a string such as "1.2" to ...
2
votes
4answers
2k views

Exponential Operator in C++

I am taking a class in C++ and I noticed there are only a few math operators to use. I also noticed that C++ does not come with an exponential operator within its math library. Why must one always ...
2
votes
4answers
456 views

Most efficient way to calculate the exponential of each element of a matrix

I'm migrating from Matlab to C + GSL and I would like to know what's the most efficient way to calculate the matrix B for which: B[i][j] = exp(A[i][j]) where i in [0, Ny] and j in [0, Nx]. Notice ...
1
vote
3answers
41 views

How to convert BigDecimal to the exponential form?

How to convert BigDecimal object to a String representation that uses the exponential form? something like: 3.134e67? I looked into the API and I found toEngineeringString() but it does not give me ...
1
vote
0answers
162 views

Best way to generate exponential variate in java

Anyone knows how can I generate a set of random exponential variates in java? Thanks in advance I have not tried any code yet. I have one var known and another one random. I have this scenario, I ...
1
vote
2answers
4k views

MATLAB exponential - how to represent e^(-t^2)?

I am a beginner in MATLAB, and i need to represent e^(-t^2). I know that, for example, to represent e^x i use exp(x), and i have tried the following 1) tp=t^2; / tp=t*t; x=exp(-tp); 2) ...
1
vote
3answers
69 views

Maths help with exponentials [closed]

Evaluate (z x^-1 y)^5 y^5 ~~~~~~~~~~~~~~~~~~~~~~~ OVER x^-4 z^-4 How would I evaluate this if X = 10, y = -3 and z = 3? I would like a step-by-step solution to help me fully understand it.
1
vote
1answer
913 views

Convert exponential to a whole number in PHP [closed]

Possible Duplicate: Convert exponential number to decimal in php Is there a way to convert an exponential number to a whole number in PHP using built in functions? A format function? ...
1
vote
1answer
64 views

dijit.form.Number doesn't show numbers in exponential form corretly

I have a number Dojo control that shows numbers with 30 digits after point. It formats numbers correctly, but when the number is small enough e.g. 8e-13, control shows something like ...
1
vote
7answers
594 views

Double precision in C++ (or pow(2, 1000))

I'm working on Project Euler to brush up on my C++ coding skills in preparation for the programming challenge(s) we'll be having this next semester (since they don't let us use Python, boo!). I'm on ...
1
vote
6answers
335 views

Computing e^(-j) in C

I need to compute imaginary exponential in C. As far as I know, there is no complex number library in C. It is possible to get e^x with exp(x) of math.h, but how can I compute the value of e^(-j), ...
0
votes
1answer
78 views

Displaying 6.5235375356299998e-07 without exponential notation

I do need your help in my actual python program. There I have to convert exponential strings, like 6.5235375356299998e-07, to a float value.
0
votes
2answers
64 views

jQuery AJAX pagination how to prevent exponential looping?

I'm trying to create an ajax pagination with jQuery. I am getting it to work but with a massive problem: The pagination consists of <<-First <-Previous Page1 Page2 Next-> Last->> and each ...
0
votes
6answers
152 views

Perl - Remove trailing zeroes without exponential value

I am trying to remove trailing zeroes from decimal numbers. For eg: If the input number is 0.0002340000, I would like the output to be 0.000234 I am using sprintf("%g",$number), but that works for ...
0
votes
3answers
34 views

Big O in an exponent

What in exact formal manner does the next expression mean: f(n)=2^O(n) ?
0
votes
3answers
90 views

C - Exponential function causes a segfault with file IO

EDIT: To answer some questions, this is the revised and still not working code (most of it was there to begin with, but I should have been explicit that I initialised the file pointer, etc). Again, ...
0
votes
0answers
15 views

Assign and calculate by exponential notation

Have you ever observed this phenomenon: If I try to calculate the following calculation in ImmediateWindow of Visual Studio 2010 C# .Net, I get this weird solution. 1E-9 * 100 = ...
0
votes
2answers
117 views

How to print a large number with exponential notation?

If I have a number 52000000000, and I want to print it out as 5.2E+9, how do I do that with printf?
0
votes
2answers
58 views

jquery clone, exponential <div> creation

Im currently creating an application in which user's are able to drag items to a mailbox. After they drop the item, a new image is created "behind" the mailbox, giving you the feeling it is actually ...
0
votes
2answers
196 views

Recursive power function: Why does this work if there's no initial return value?

because power(base, exponent) has no return value unless exponent is 0, initially, shouldn't power(base, exponent -1) return 'undefined', and therefore be unmultipliable, initially? So, I am having ...
0
votes
1answer
168 views

C# get excel data in exponential format

Excel had controlled over the formatting as explained under here In my sample data (alphanumeric) in excel: - P000213590-A 312700133751-- > display as 3.127E+11 In my sample code: - DataTable dt ...
0
votes
4answers
75 views

exponential growth over time - how do I calculate the increase over a delta-time?

This is probably a silly / stupid question, but I'm still gonna ask it : if I have an initial start value at Time 0 (which is in my case always 1.0) and a rate of growth, how do I figure out the ...
0
votes
3answers
180 views

Perl regex - exponential values

What's a good regex to match a decimal number to check that it does not contain exponential values? Thanks for any help. Can I just say something like match anything except if it contains "e-", ...
0
votes
2answers
458 views

Convert exponential format into numeric format in XSLT

I have to convert within my XSLT number in exponential format ( i.e: 1,2345E7 ) into numeric ( i.e: 12340000 ). What would the a XSLT function to achieve this.
0
votes
3answers
158 views

Exponential Decay Surrounding Bounding Box

I didn't really know how to phrase this question, its quite strange. I have a 1d array of intensity values, and a bounding box (integer start and end point in the array). I want to keep the values ...
0
votes
4answers
126 views

Java Error - What am I doing wrong?

Alright so I've got this piece of code: blah = (26^0)*(1); System.out.println(blah); Which produces the output 26, when it should be equal to 1. What am I doing wrong? What can I do to fix this?
0
votes
1answer
354 views

Exponential numbers to be converted to string

I have an issue. I'm importing data from an excel file, data like codes and stuff. for importing I'm using LinqToExcel linqToExcel The problem is that one of the excel's columns contains codes like ...
0
votes
4answers
2k views

Converting exponential number to decimal 1.11111117E+9 - trailing digits become zero

I'm trying to convert and exponential number 1.11111117E+9 which is actually a 10 digit number '1111111111'. When I'm trying to convert this exponential number using decimal.TryParse method it is ...
0
votes
4answers
367 views

How to specify exponential constants in C#?

I've got some C code that defines a exponential number as a constant. How do I write this in C#? double TOL = 1.E-8d; double TOL2 = 1.E - 8;
0
votes
1answer
46 views

Unexpected results in Firebug

Unexpected results in Firebug console. Why in this operation: 1.7E16+2 the last number is 2 and in 1.7E16+3 operation the last number is 4 :D This is a JavaScript Bug? Firebug unexpected results
0
votes
2answers
303 views

Modifying multiplying calculation to use delta time

function(deltaTime) { x = x * FACTOR; // FACTOR = 0.9 } This function is called in a game loop. First assume that it's running at a constant 30 FPS, so deltaTime is always 1/30. Now the game is ...
-1
votes
3answers
81 views

What is the difference between these two types of exponential in Python

Please explain to me the difference between them? import math print math.exp(2) print print 2 ** 3 ============================ 7.38905609893 8
-1
votes
3answers
395 views

C# - How To Convert/Display a Floating-Point/Exponential Result into a Full/Whole Number

I am using C# inside .Net Environment. I have some really large integer values entered by user which are than divided by each other and the result is displayed. Now we know that 4/2 = 2 is simple but ...