Reference no: EM1333171
Simple matlab questions need solved, given step by step answers as how the code flows, works, etc to get the answers.
Which is the correct matlab logical expression to check whether the value of x is between -10 and 10 (inclusive)?
a) -10 <= x <=10
b) -10<= x, X <= 10
c) x>=-10 & X<=10
d) x>=-10| x<=10
e) none
Assuming that x is a vector that allready exists, what is the value of y after the following code is executed?
y = x(1);
for k=2:length(x)
if x(k) >y
y=x(k);
end
end
a) the last element in x
b) the first elemtn in x
c) the max element in x
d) the min element in x
e) none
add one or two statements to complete the following code that implements question 12 using vectors instead of a loop.
x=1.5;
N=50;
k=[0:2:100];
Which of the following is the corect code to determine y=1 + 1/x+1/x^2+1/x^3..+1/x^N until the last term is less than 10^-8, using x=1.5
and is c) but why?? x=1.5; k=0; y=o; term=1/(x^k); while term >= 1e-8; y=y+term