Basic queries Matlab (vectors, indexing, construct matrices in a specific form)
Mostra commenti meno recenti
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 Commenti
per isakson
il 24 Mag 2020
Modificato: per isakson
il 24 Mag 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
il 24 Mag 2020
Stephen23
il 24 Mag 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
il 24 Mag 2020
per isakson
il 24 Mag 2020
Or
%Exercise 2:
vec = [1 2 3 4 5 6 7 8 9 10];
vec( 2 : 2 : end ) = 5;
Risposta accettata
Più risposte (0)
Categorie
Scopri di più su Logical in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!