Filter löschen
Filter löschen

normrnd function not working

18 Ansichten (letzte 30 Tage)
Jeno Boka
Jeno Boka am 8 Aug. 2017
Beantwortet: Star Strider am 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?

Akzeptierte Antwort

Star Strider
Star Strider am 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.

Weitere Antworten (0)

Kategorien

Mehr zu Get Started with MATLAB finden Sie in Help Center und File Exchange

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by