Invalid expression. When calling a function or indexing a variable, use parentheses. Otherwise, check for mismatched delimiters. Can anyone help in this error?
Ältere Kommentare anzeigen
prompt = " Mean Values:";
M = input(prompt)
prompt = "Range Values:";
R = input(prompt)
Mean = mean(M);
Mean
Range = mean(R);
Range
d = 2.326
n = 5
SE = Range/(d*(sqrt[n]);
Antworten (1)
M = 1:10;
R = 200:300;
Mean = mean(M);
Range = mean(R)
d = 2.326;
n = 5;
SE = Range./(d*sqrt(n)) % check the parenthesis and [ ] is used for concatenating numbers /arrays
Kategorien
Mehr zu Matrices and Arrays finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!