The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
4answers
1k views

Can I install Pow on my Ubuntu?

I find Pow great on my Mac. It makes the rails dev environment setup easily. Can I install it on my Ubuntu? I can't find any info about it. If not, is there anything like it for Linux? Thanks. ...
7
votes
1answer
182 views

What's difference between Math.pow(9, 18) and 9^18

when I use Math.pow(9, 18) =150094635296999136 when I use web Calculator 9^18 = 150094635296999121 (http://web2.0calc.com/) when I use goggle calculator 9^18 = 1.50094635 × 10^17 why it is ...
6
votes
3answers
542 views

Is there an easy way to have pow serve https?

pow is great, but many things in my app assume https, and it would be a pain to go through them all and add "if not dev environment". Is it possible to have pow serve https?
6
votes
2answers
1k views

How to do a fractional power on BigDecimal in Java?

In my little project I need to do something like Math.pow(7777.66, 5555.44) only with VERY big numbers. I came across a few solutions: Use double - but the numbers are too big Use BigDecimal.pow but ...
5
votes
2answers
131 views

Strange behaviour of gcc and math.h?

I've been trying to build some code that uses math functions (e.g. pow). math.h is included, and the flag -lm is used during the build. When compilation is called like this (-lm flag at the begining ...
4
votes
3answers
141 views

Pow() calculates wrong?

I need to use pow in my c++ program and if i call the pow() function this way: long long test = pow(7, e); Where e is an integer value with the value of 23. I always get 821077879 as a ...
4
votes
5answers
612 views

C's pow function refuses to work with variable exponent

Let's say I have the following code snippet: int i; double value; for(i = 0; i < CONSTANT; i++) { value = (double)pow(2, i); } Trying to compile this code yields an "undefined reference to ...
4
votes
1answer
392 views

Is there a substitute for Pow in BigInteger in F#?

I was using the Pow function of the BigInteger class in F# when my compiler told me : This construct is deprecated. This member has been removed to ensure that this type is binary compatible ...
3
votes
1answer
82 views

Rails : How to get parallels running with Pow

I've recently starting using Pow for local Rails application development. I typically use parallels 7 for cross-browser testing. I'm running into an issue where my POW development url - e.g. ...
3
votes
7answers
142 views

How to raise an int or long to a power in C++

Trivial question: I am just wondering, if one wants to raise an int or a long to the power of another int or long, does (long)std::pow((double)a,(double)b) suffice, or do I need (long)(0.5 + ...
3
votes
2answers
483 views

Remotely viewing web pages served by pow.cx

Using WEBrick you could navigate to an app you were serving from another device/virtual machine by navigating to your.ip.address.here:port Is it possible to do something similar with pow.cx?
3
votes
6answers
231 views

Need pow(-1,1.2) to be 1

I am using math.h with GCC and GSL. I was wondering how to get this to evaluate? I was hoping that the pow function would recognize pow(-1,1.2) as ((-1)^6)^(1/5). But it doesn't. Does anybody know ...
3
votes
3answers
334 views

Why is PHP float division and POW giving wrong results and unexpected results?

Does anyone know why this happens and if it can be fixed. I'm comparing results from C and PHP, but PHP is giving me different results. I can supply some code if needed but has anyone experienced ...
3
votes
2answers
709 views

How to: pow(real, real) in x86

I'm searching for the implementation of pow(real, real) in x86 assembler. Also I'd like to understand how the algorithm works.
3
votes
7answers
4k views

finding cube root in C++?

Strange things happen when i try to find the cube root of a number. The following code returns me undefined. In cmd : -1.#IND cout<<pow(( double )(20.0*(-3.2) + 30.0),( double )1/3) While ...
3
votes
6answers
555 views

negative pow in python

I have this problem >>> import math >>> math.pow(-1.07,1.3) Traceback (most recent call last): File "<stdin>", line 1, in <module> ValueError: math domain ...
3
votes
3answers
1k views

java.math.BigInteger pow(exponent) question

I did some tests on pow(exponent) method. Unfortunately, my math skills are not strong enough to handle the following problem. I'm using this code: BigInteger.valueOf(2).pow(var); Results: var | ...
3
votes
6answers
1k views

Where is pow function defined and implemented in C?

I read that the pow(double, double) function is defined in "math.h" but I can't find its declaration. Does anybody know where this function declared? And where is it implemented in C? Reference: ...
2
votes
1answer
38 views

ruby-debug with Pow — breakpoints never hit

I'm trying to use ruby-debug with Pow. Rails 3 app. I have done everything here: https://gist.github.com/1098830 I've restarted the server and machine several times. I can get rdebug to connect: → ...
2
votes
4answers
86 views

Why doesn't this function exceed the value 2^31?

The power function (written in c++)... long power (long a, long b){ long result=1l; for (int i = 0;i<b;i++){ result*=a; } return result; } Now I do some output testing... ...
2
votes
3answers
76 views

return value of pow() gets rounded down if assigned to an integer

I am using the pow function in C and storing the return value in an integer type. see the code snippet below: for (i = 0; i < 5; i++){ val = (int)pow(5, i); printf("%d, ", val); } here ...
2
votes
1answer
69 views

Pow (37signals) doesn't start at start up

I am using the POW server for my rails application. However, it doesn't start on boot. I have to reinstall it every time. I have tried everything in the troubleshooting guide. Any ideas on where ...
2
votes
3answers
1k views

SyntaxError on the welcome to rails screen using Pow

I have just set up a new project which displays all the correct info in the about your applications environment window when on http://localhost:3000/ but when I run it at http://egg.dev/ I get: ...
2
votes
2answers
290 views

Can I get Rails debugging output in Pow similar to WEBrick?

When I use rails/server (WEBrick) I get constant debug info (queries, etc) from my rails app as console output. Is there a way to get this debug output with Pow? Thanks
2
votes
1answer
232 views

How do I access remote machine that runs on Pow (rails web server)

I've recently installed Pow on my Mac. It's great. It's convenient for my own dev machine. But I wonder if I can set it up to be shared by my colleagues. The problem is DNS resolution part. For ...
2
votes
5answers
188 views

Am I going crazy on is Math.Pow broken?

I used the base converter from here and changed it to work with ulong values, but when converting large numbers, specifically numbers higher than 16677181699666568 it was returning incorrect values. I ...
2
votes
4answers
480 views

BigInteger.pow(BigInteger)?

I'm playing with numbers in Java, and want to see how big a number I can make. It is my understanding that BigInteger can hold a number of infinite size, so long as my computer has enough Memory to ...
1
vote
2answers
63 views

sscanf() causes link to fail when powl() is present

When I compile the pared-down program below, I get the following error from the linker: $ gcc -std=c99 -O3 powltest.c -o powltest /tmp/ccYkWTGI.o: In function `main': powltest.c:(.text+0x7a): ...
1
vote
1answer
60 views

PHP to Coldfusion

I need to convert the following line of PHP into Coldfusion $age = 10 $test = pow($age,-2)*log($age); Coldfusion does not have a POW() function. This is what I have come up with <cfset age = ...
1
vote
0answers
78 views

Pow and VMware Fusion

I am using Pow to serve a Rack application on Mac OS X. http://myapp.dev correctly displays the application. On the same machine I am using VMware Fusion to run Windows 7 while sharing the Mac's ...
1
vote
1answer
102 views

android kernel libm pow(float,float) implementation

I am testing corner cases on the pow call(#include <math.h>), specifically pow(-1, Inf). On my desktop (Ubuntu) I get the result 1.0, this is in accordance with the 2008 IEEE floating point ...
1
vote
6answers
260 views

Power function in php to calculate 17^2147482999

I am trying to make a power function to calculate the power of 17^2147482999. I tried this code: function ipow($a, $b) { if ($b<0) { echo "B must be a positive integer"; } ...
1
vote
1answer
159 views

POW like server for Lua web development (super simple / no config)?

Is there is simple POW like web development environment for Lua? The idea being, with a single command (no configuration) - you have a self contained web development environment for Lua up and ...
1
vote
8answers
379 views

Fast way to compute n times 10 raised to the power of minus m

I want to compute 10 raised to the power minus m. In addition to use the math function pow(10, -m), is there any fast and efficient way to do that? What I ask such a simple question to the c++ gurus ...
1
vote
1answer
347 views

Rails + Pow + Snow Leopard Server: I can't get Pow to work

I'm running Snow Leopard Server 10.6.7, and I need to host some Rails apps locally. Pow seems to be a good fit for what I need, but I can't seem to get it to work. At first, when I went to ...
1
vote
4answers
208 views

To compute Euler’s pentagonal number theorem via dynamic programming

Here is a link to the code and I have posted it below too. #include<math.h> void pentagon(int n) { int k,p[10],a[10],b[10]; if(n<0) p[n]=0; if(n==0) p[n]=1; ...
1
vote
3answers
435 views

How wrong do I use Math.Pow(a,b) function in this C# code?

I can not find anything wrong with the following code, whence the MSVC# compiler stores NAN in "c": double c = Math.Pow(-8d, 1d / 3d); While I think this line should calculate -2 for "c", the ...
1
vote
4answers
315 views

c++ pow function- invalid result?

Why is the output of the dResult invalid ? Env: Visual Studio 2008 int _tmain(int argc, _TCHAR* argv[]) { double dN = - 0.091023604111478473 ; double dD = 0.127777777777777; ...
0
votes
2answers
55 views

Undefined Reference error for power function in C [closed]

Possible Duplicate: Problem using pow() in C Undefined reference to pow&#39; andfloor' I am using gcc 4.6.1. Code snippet: int main(void) { int x= 2; int y = pow(3,x); ...
0
votes
0answers
44 views
+50

POW Doesn't serve Rails

When I run the project form rails server, it works fine, when I open it in POW with http://mon.dev/rails/info/properties, I get this: Error: Response was not received Error: Response was not received ...
0
votes
0answers
14 views

Weird rails routing with POW

I found a very weird routing problem in my rails 3.1 app with Pow. I have a page like mydomain.dev/items . And the page has a pagination from will_paginate. Weird is that when I click a page link, it ...
0
votes
0answers
23 views

Can I load different RAILS_ENV for different pow host for one app?

I want to run my capybara-webkit-enabled acceptance tests through Pow. Our app has several subdomains, and it's a pain getting it to work. If I run my tests through pow, though, they work. Only ...
0
votes
1answer
60 views

“Pow is installed” shows up on all my sites now

I installed Pow with RVM for a rails app I'm working on. It's fine. It's the other sites that now all say "Pow is installed". I'm sure it's a simple setting, but I'm not able to find it. Has anyone ...
0
votes
0answers
50 views

Handling undefined, NaN or Inf Values in glsl. Thinking of matherrors

I still didn't get rid of some annoying bugs in my glsl shader (GL 2.0)... I searched for a solution of this problem for over 3 weeks now, but I didn't get any. There are many examples and ...
0
votes
4answers
72 views

Using pow yield unexpected result

I'm trying to use the pow function in c++ but the result is not what I expect. Snippet: #include <math.h> float floatcopy = boost::lexical_cast<float>(copy); //Then floatcopy is 2.300000 ...
0
votes
1answer
64 views

How to set the test database when using pow and capybara-webkit?

Integration testing with subdomains works seamlessly using pow and capybara-webkit, except for one small hitch. This config in my env.rb hits my dev database instead the test db: ...
0
votes
1answer
28 views

Preventing broken images hitting Rails in development

Anyone know of a simple way to prevent broken images hitting Rails in development? Sometimes I need to load the production database to debug a specific problem, and the broken images add noise to the ...
0
votes
2answers
62 views

Specify cmath's pow function and not locally declared one

When calling ans+= c[i] * pow(x,i);, xCode is complaining "Too many arguements to function call, expected 1 have 2". I have a locally defined function as follows: Polynomial pow(unsigned int n) ...
0
votes
0answers
55 views

Ruby Debugging with Pow and Aptana (Eclipse)

Does anybody know how to set up Ruby Debugging with Pow and Aptana (Eclipse)?
0
votes
1answer
131 views

How does Pow/Phusion Passenger/Webrick work?

I come from a PHP and .NET world where I understand the environment fairly well. However I can't find a newbie explanation of how the Ruby / Ruby on Rails stack actually work with these web server. ...

1 2