Tagged Questions

-1
votes
1answer
52 views

Matlab loops for a function

Hi, I am trying to make a loop to redo a Matlab function 1000 times. Here's the program d = unifrnd (0,10,[10,1]); c = d.^(-2); a = round(unifrnd(0,1,[1,10]); e = a*c btotal = e+1 SIR = 1/btotal …
0
votes
1answer
39 views

SSRS Chart w/Series and Mean

Hi all, I have a chart I'm making in SSRS. My database is returning data like this: Period Name, Question, Answer, Count, Mean, Median Nov 09, Can Haz Chezbrgr, Yes, 5, 4, 3.1 Nov 09, Can Haz …
0
votes
1answer
125 views

How should I perform this binning and averaging in MATLAB?

I am trying to perform a binning average. I am using the code: Avg = mean(reshape(a,300,144,27)); AvgF = squeeze(Avg); The last line gets rid of singleton dimensions. So as can be seen I am …
0
votes
2answers
106 views

Weighted average of angles

I want to calculate the weighted mean of a set of angles. In this Question, there's an answer how to calculate the mean as shown in this page. Now I'm trying to figure out how to calculate the …
-4
votes
3answers
205 views

How can I calculate averages using Perl? [closed]

These are the sample values in the text file a b c avg 12.9 9.9 8 - 13 7 5 - 1.9 5 4 - 4.9 1.2 2 - How can I find the average of each row using Perl?
1
vote
4answers
234 views

How to use numpy with ‘None’ value in python?

Hello everybody, i'm a pretty new user of python and numpy, so i hope my question won't annoy you. Well, i'd like to calculate the mean of an array in python in this form : Matrice = [1, 2, None] …
5
votes
10answers
608 views

Why does isNaN(” “) equal false

Hi, all. I have a quick question (I hope!). In JS, why does isNaN(" ") evaluate to false, but isNaN(" x") evaluate to true? I'm performing numerical operations on a text input field, and am …
1
vote
2answers
381 views

How to calculate mean based on number of votes/scores/samples/etc?

For simplicity say we have a sample set of possible scores {0, 1, 2}. Is there a way to calculate a mean based on the number of scores without getting into hairy lookup tables etc for a 95% …
5
votes
6answers
266 views

What’s the quickest way to get the mean of a set of numbers from the command line?

Using any tools which you would expect to find on a nix system (in fact, if you want, msdos is also fine too), what is the easiest/fastest way to calculate the mean of a set of numbers, assuming you …