Newbie question

1 view (last 30 days)
Tom
Tom on 12 Nov 2011
Hi - just started using Matlab.
I've got this array of values: - Nvalues =
1.3138 5.0076 3.2438 3.2438 0.7919 4.4857 2.7220 6.4158
and I need to make another array from those values using this formula: -
5+20*log((sqrt(2*pi*Nvalues))/tanh(sqrt(2*pi*Nvalues)))
but when I put in that formula it just gives me one value - 34.9308. What I want is a new array of values - the first based on the above equation, where the two Nvalues in the equation are both the first one in the list, the 2nd based on the above equation, where the two Nvalues are both the 2nd one in the list, and so on.
How do I do this?
Thanks

Accepted Answer

Fangjun Jiang
Fangjun Jiang on 13 Nov 2011
5+20*log((sqrt(2*pi*Nvalues))./tanh(sqrt(2*pi*Nvalues)))
Notice './' instead of '/'.
help rdivide
./ Right array divide. A./B denotes element-by-element division. A and B must have the same dimensions unless one is a scalar. A scalar can be divided with anything.

More Answers (0)

Categories

Find more on Multidimensional Arrays in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!