Basic queries Matlab (vectors, indexing, construct matrices in a specific form)
Afficher commentaires plus anciens
Hello community,
I am beginner in Matlab. I am struggling with the following exrcises. I only managed to answer 1 & 5 however the others confuse me and I don't even know how to start specially with 2 & 3. Please I need your help

My solutions:
%Exercise 1
x = [2:3:89]
%Exercise 5
function density=ExamC()
x=input('Please enter x: ');
m=input('Please enter mean: ');
s=input('Please enter standard deviation: ');
f=1/(s*sqrt(2*pi))*exp(1)^((1/2)*((x-m)/s)^2);
disp('Value of density is: '), disp(f);
end
Thank you for your help,
Abdel
5 commentaires
per isakson
le 24 Mai 2020
Modifié(e) : per isakson
le 24 Mai 2020
Maybe it would be worth spending a couple of hours with Learn the essentials of MATLAB through this free, two-hour introductory tutorial on commonly used features and workflows.
Abderrahmane Elakhiri
le 24 Mai 2020
Stephen23
le 24 Mai 2020
"Specially question 2. It would be nice of you if you can simplify in simple words what's exactly required or the logic to answer it."
Question 1 defines a vector named vec.
Question 2 requires you to change the even-indexed elements of vec to 5.
Abderrahmane Elakhiri
le 24 Mai 2020
per isakson
le 24 Mai 2020
Or
%Exercise 2:
vec = [1 2 3 4 5 6 7 8 9 10];
vec( 2 : 2 : end ) = 5;
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Logical dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!