Tagged Questions
The power tag has no wiki summary.
25
votes
12answers
4k views
How can I write a power function myself?
I was always wondering how I can make a function which calculates the power (e.g. 23) myself. In most languages these are included in the standard library, mostly as pow(double x, double y), but how ...
15
votes
5answers
631 views
Exponentiation in Haskell
Can someone tell me why the Haskell Prelude defines two separate functions for exponentiation (i.e. ^ and **)? I thought the type system was supposed to eliminate this kind of duplication.
...
14
votes
4answers
397 views
Estimating process energy usage on PCs (x86)
I'm trying to come up with a heuristic to estimate how much energy (say, in Joules) a process or a thread has consumed between two time points. This is on a PC (Linux/x86), not mobile, so the ...
13
votes
8answers
8k views
Control USB port's power?
Does anybody know how to control USB pins on a certain USB port? I think it is definately possible in assembler but what about C++ or C#?
I want to be able to use USB battery as a power supply for ...
12
votes
3answers
359 views
Numpy - square root of -1 leaves a small real part
Perhaps this is an algorithmic issue, but the following piece of code
numpy.power((-1+0j),0.5)
produces the following output
(6.1230317691118863e-17+1j)
Analogous expressions e.g. ...
11
votes
1answer
2k views
Wifi sleeps, even with Lock
Summary: even when wifi lock is acquired, when the phone is running on batteries, WiFi is disconnected after a while.
I've simplified the problem to a single activity with a button that launches a ...
11
votes
8answers
1k views
Calculating Extremely Large Powers of 2
I have made a program in Java that calculates powers of two, but it seems very inefficient. For smaller powers (2^4000, say), it does it in less than a second. However, I am looking at calculating ...
9
votes
1answer
4k views
Is the ^ operator really the XOR operator in C#?
I read that the ^ operator is the logical xor operator in c#, but i also thought it was the "power of" operator. Can someone clear this up for me?
8
votes
8answers
840 views
How to measure the power consumed by a C algorithm while running on a Pentium 4 processor?
How can I measure the power consumed by a C algorithm while running on a Pentium 4 processor (and any other processor will also do)?
8
votes
4answers
904 views
How can I know when Windows is going into/out of sleep or Hibernate mode?
Is it possible to subscribe to a Windows event that fires when Windows is going into or coming out of Sleep or Hibernate state?
I need my application to be made aware when the computer is going to ...
7
votes
2answers
370 views
Programatically check whether monitor is switched off
Mac OS X has a power saving feature which allows the OS to turn off the monitor. Is there an API to detect in code whether the monitor is currently switched on or off?
7
votes
3answers
490 views
Algorithm for pow(float, float)
I need an efficent algorithm to do math::power function between two floats,
do you have any idea how to do this, (i need the algorithm not to use the function itself)
7
votes
1answer
3k views
c# How to get the events when the screen/display goes to power OFF or ON?
Hi I have been searching but I can't find the answer. How do I know when the screen is going off or on. Not the SystemEvents.PowerModeChanged .
I dont know how to retrieve the display/screen EVENTS
...
6
votes
1answer
105 views
Is there a way to detect that a USB device is plugged in by detecting power draw rather than it's device driver?
I am building a system that needs to handle broken devices that may or may not have a working USB plug. Would like to know if can ask USB subsystem if a port is drawing power or not.
6
votes
3answers
193 views
How do I get a power set in a specific order?
there some solutions for calculating a power set, but these I found on google doesn't give the power set in the order, which I need it.
For example, if I want the power set of (1,2,3,4) common ...
6
votes
1answer
2k views
Difference between Wakelock and FLAG_KEEP_SCREEN_ON?
Keeping the screen awake can be accomplished by using a wakelock by
mWakeLock = mPowerManager.newWakeLock(PowerManager.SCREEN_BRIGHT_WAKE_LOCK,
getClass().getName());
Or by adding ...
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
4answers
111 views
Modulus power of big numbers
I am trying to implement the SAFER+ algorithm. The algorithm requires finding the modulus of a power function as follows:
pow(45, x) mod 257
The variable x is a byte, and thus can range from 0 to ...
5
votes
5answers
2k views
Why is my power operator (^) not working?
#include "stdio.h"
#include "math.h"
void main(void)
{
int a;
int result;
int sum=0;
printf("Enter a Number : ");
scanf("%d",&a);
for(int i=1;i<=4;i++)
{
...
5
votes
6answers
1k views
C# Math.Pow is not calculating correctly
I'm having a problem with C#. To be precise with the Math.pow(). If I try to calculate 15^14 then I get "29192926025390624". But if I calculate it with Wolfram Alpha I get "29192926025390625". As you ...
5
votes
1answer
444 views
How do you make this Haskell power function tail recursive?
turboPower a 0 = 1
turboPower a b
| even b = turboPower (a*a) (b `div` 2)
| otherwise = a * turboPower a (b-1)
THANKS!
4
votes
2answers
113 views
What is the correct way to prevent sleep on OS X? [closed]
Possible Duplicate:
How to programmatically prevent a Mac from going to sleep?
What is the correct method on the current version of OS X (10.7) for preventing sleep while an application or ...
4
votes
2answers
155 views
power function without the use of math library
I'm working on a micro-controller that contains access to floating-point operations.
I need to make use of a power function. The problem is, there isn't enough memory to support the pow and sqrt ...
4
votes
4answers
171 views
How can Get-ChildItem be tested for no results (zero files)?
I'm stumped here on what seems to be a simple problem; so sorry for any bone-headed-ness over here.
I have script that cleans up defunct backup files. After identifying the files I loop over and ...
4
votes
1answer
239 views
Mac - Get Battery/Charging Status (Plugged in or not)
I'm building a Mac OSX app that needs to poll a server every minute, or even less if the user wishes. Unfortunately the service doesn't support push...
Anyways, I would like to provide two options to ...
4
votes
2answers
794 views
Android: Check if device is plugged in
My app has a broadcast receiver to listen for changes to ACTION_POWER_CONNECTED, and in turn flag the screen to stay on.
What I am missing is the ability for the app to check the charging status when ...
4
votes
2answers
194 views
Evaluate if integer is POT (Power Of Two) [closed]
Possible Duplicates:
Query about working out whether number is a power of 2
How to check if a number is a power of 2
I require a function body for this prototype:
bool isPOT(int x);
...
4
votes
3answers
562 views
How to get power usage on a Mac
I'm trying to get the power usage (in watts) but I can't figure out how. I looked at pmset and IOKit but couldn't find anything about it. coconutBattery can calculate it for laptops using the MacOS ...
4
votes
2answers
987 views
Tracking power use on Android
I have an application that keeps a long-standing network connection to a server.
I periodically ping the server to know if its still alive.
I imagine that it affects battery life, but other than ...
4
votes
3answers
112 views
How to detect when the laptop is running on batteries in .NET?
How to detect when the laptop is running on batteries (or AC) in .NET?
Thanks,
Mahesh
4
votes
4answers
996 views
Schedule machine to wake up
What's the best way to programmatically cause a Windows XP (or above) machine to wake up at a specific time. (Ideally a lot like how Media Center can start up automatically to record a particular TV ...
4
votes
5answers
2k views
Is USB power always enabled ? And if not, how to write a driver
I have a device that came with an AC power adapter where the connector is a mini USB plug. The device however doesn't seem to power itself from a computer's USB port (using a standard USB-mini USB ...
4
votes
2answers
2k views
iPhone - Detect if device is charging
I can't find anything definate using my favourite tool however I thought I would put it out here....
Is there a way, using the iPhone SDK, for an App to detect if the device is in a state of ...
3
votes
2answers
81 views
iPhone4 how to find out if the power cable is plugged in?
I would like to know if my app is running with an external power cable attached. Is it possible to find out this state at runtime?
An extra question: would this be able to differentiate between true ...
3
votes
4answers
165 views
How would I control the output of the power in USB ports in Linux?
I built a robot from a thin client pc (can run Windows CE or Linux) and two servo motors. I put USB ends on the servo motors, so when they are plugged in to the thin client they continuously run. In ...
3
votes
1answer
98 views
How to calculate exponents in GWT 2.3?
I needed to calculate exponents using GWT 2.3 in Java. ie: x^y. There's no native power operator in Java, normally you have to import java.lang.Math to use the pow() method. But you cannot do that in ...
3
votes
2answers
160 views
Detect current with USB and Java
To check if a 'switch' is open or closed and detecting that in Java, I have the following plan: I won't use the data pins, just the USB 5V current, and if the switch is closed there is a current, ...
3
votes
1answer
388 views
Android Power Profiler
I need to perform power measurements for android applications. I tried "powertutor" and it gives the power consumption per every application. Yet, I don't know how accurate its readings are. Does ...
3
votes
4answers
330 views
C# : Switch between power plans
i am creating an API and i want to switch between power plans
[Balanced , High performance , Power
saver]
, my problem isn`t on the code , coding is easy , but i want to know where can i find ...
3
votes
1answer
2k views
How can I see which wakelocks are active
For some reason my Android phone won't go to sleep. I assume that a wakelock is keeping it awake, but there is no way to tell which wakelocks are active. The running services doesn't list anything ...
3
votes
2answers
318 views
Easy way to calculate integer powers of 2 in C#?
I'm sure this isn't as difficult as I'm making it out to be.
Would like to use something equivalent to Math.Pow(double, double) but outputting an integer. I'm concerned about roundoff errors with ...
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
5answers
648 views
Math.pow errors in Java
I am 'obviously' just learning programming and I can't seem to figure out what to do in order to get rid if this error. The error is on the second to the last line - the line before: ...
3
votes
3answers
658 views
find largest power of two less than X number?
I m doing this
def power_two(n, base = -1):
result = 2 ** base
if result < n:
base += 1
power_two(n, base)
else:
if result == n:
print base
...
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
324 views
Opposite method of math power adding numbers
I have method for converting array of Booleans to integer. It looks like this
class Program
{
public static int GivMeInt(bool[] outputs)
{
int data = 0;
...
3
votes
1answer
161 views
What settings can my app control to conserve battery life?
I was wondering what settings an application can control to improve battery life in the Android environment. On most laptops, you can control screen brightness, wireless adapter settings, etc, as a ...
3
votes
1answer
233 views
Log my battery performance on netbook
Which Windows API (Windows Xp and Window 7) do I use to log my battery performance on netbook? I want to write an app which can graph the watt vs time. I always run a select few apps on the netbook. ...
3
votes
2answers
428 views
In Mac OS X, is there a programmatic way to get the machine to go to sleep/hibernate?
Is there some command line or AppleScript that I can write/run to make the machine go to sleep automatically or even better, into hibernate mode?
I can run the program as root.
2
votes
0answers
55 views
Tegra Ventana Android Kernel power
I am having some difficulty in a power file, and I can't see to resolve the issue. I am very new to programming, since I haven't done it since high school with VB. I am helping someone out with a ...