average and std deviation of user input of a number of inputs, decided by user.
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I'm trying to help my Fiance with her problem(I'm on her account) for her engineering programming class. I know a good bit about C++ and Java but I'm completely unaccustomed to MATLAB and so I'm not doing all that well helping her. Does anyone know how to do this? I would greatly appreciate the help, I've looked but there doesn't seem to be anything online that's the same. She has to use the mean and std deviation functions in the program as well.
0 Kommentare
Antworten (1)
Chaitanya Mallela
am 4 Mär. 2020
The following code might help
clear all;
clc;
a=input('Enter the grades');
len = length(a);
m=mean(a);
sdev = std(a);
fprintf('There are %d grades\n',len);
In the Command window input the grades inside square bracket separated by comma.
0 Kommentare
Siehe auch
Kategorien
Mehr zu Startup and Shutdown 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!