Basic queries Matlab (vectors, indexing, construct matrices in a specific form)
Mostrar comentarios más antiguos
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 comentarios
per isakson
el 24 de Mayo de 2020
Editada: per isakson
el 24 de Mayo de 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
el 24 de Mayo de 2020
Stephen23
el 24 de Mayo de 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
el 24 de Mayo de 2020
per isakson
el 24 de Mayo de 2020
Or
%Exercise 2:
vec = [1 2 3 4 5 6 7 8 9 10];
vec( 2 : 2 : end ) = 5;
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Logical en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!