Clear Filters
Clear Filters

normrnd function not working

18 views (last 30 days)
Jeno Boka
Jeno Boka on 8 Aug 2017
Answered: Star Strider on 8 Aug 2017
I tried the following examples:
n1 = normrnd(1:6,1./(1:6))
n2 = normrnd(0,1,[1 5])
n3 = normrnd([1 2 3;4 5 6],0.1,2,3)
I only get the following console output:
>> n1 = normrnd(1:6,1./(1:6))
Undefined function 'normrnd' for input arguments of type 'double'.
>> n2 = normrnd(0,1,[1 5])
Undefined function 'normrnd' for input arguments of type 'double'.
>> n3 = normrnd([1 2 3;4 5 6],0.1,2,3)
Undefined function 'normrnd' for input arguments of type 'double'.
I have only signal processing toolbox, and plain matlab. If I type:
edit normrnd
The normrnd.m opens up normally.
What is the problem?

Accepted Answer

Star Strider
Star Strider on 8 Aug 2017
The normrnd function is in the Statistics and Machine Learning Toolbox. You must have it downloaded and installed to have access to its functions.
You can do essentially the same with the built-in MATLAB function randn:
n1 = (1:6) + randn(1,6)./(1:6);
Here, you add the desired mean, and multiply by the desired standard deviation.

More Answers (0)

Categories

Find more on Get Started with MATLAB in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!