Tagged Questions
0
votes
1answer
76 views
How to summarize data from one second in Graphite?
I am new to Graphite. I just wrote a Python script that generates data within graphite, however I am sending in the value of 1 for each datapoint, and there are multiple datapoints for each second. ...
1
vote
1answer
72 views
How to count frequency of elements located in a small grids?
Lots of data (3 column) in files such as:
longitude latitude count
20.12 50.45 1
35.78 24.26 1
20.48 50.16 2
... ... ...
Map (longitude and ...
1
vote
2answers
518 views
cpu frequency scaling linux API in C
I want to change cpu(ARM) frequency in my program on linux(Ubuntu).
Is there any cpu frequency scaling and turning off core API in C?
If any, the API can handle each core in multicore cpu?
5
votes
3answers
394 views
Intel MSR frequency scaling per - thread
I'm extending the Linux kernel in order to control the frequency of some threads: when they are scheduled onto a core (any core!), the core's frequency is changed by writing the proper p-state to the ...
0
votes
1answer
398 views
changing scaling_governor on android device
hi guys im trying to change the scaling_governor on android device using this code
String[] args = {"/system/bin/echo userspace >", "/sys/devices/system/cpu/cpu0/cpufreq/scaling_governor"};
...
1
vote
2answers
937 views
How to change clock frequency in Android?
I'm a new to software development on Android.
I want to make an application like SetCPU that can manipulate CPU frequency in Android.
But I couldn't find some related APIs or materials.
I want to ...
4
votes
5answers
1k views
Bash script to find the frequency of every letter in a file
I am trying to find out the frequency of appearance of every letter in the english alphabet in an input file. How can I do this in a bash script?
0
votes
2answers
355 views
How to output a frequency 1kHz and power/volume = 60% in Linux (Ubuntu)?
How to output a frequency 1kHz and power/volume = 60% in Linux (Ubuntu)?
I need sample code in C/C++. Thanks!
12
votes
7answers
3k views
Determining Word Frequency of Specific Terms
I'm a non-computer science student doing a history thesis that involves determining the frequency of specific terms in a number of texts and then plotting these frequencies over time to determine ...