フィルターのクリア

Error using subsindex Function 'subsindex' is not defined for values of class 'prob.Expo​nentialDis​tribution'​.

1 回表示 (過去 30 日間)
Error using subsindex
Function 'subsindex' is not defined for values of class 'prob.ExponentialDistribution'.
Program is :
x=[0:0.01:10];
Px=makedist('Exponential','mu',0.2); % Number of arrivals perminute 5
y=pdf(Px,x);

回答 (1 件)

Steven Lord
Steven Lord 2015 年 9 月 20 日
You have a variable named pdf in your workspace. MATLAB interprets your last command as an attempt to index into that variable with the distribution object rather than an attempt to call the pdf method of that object. Rename or clear that variable.

Community Treasure Hunt

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

Start Hunting!

Translated by