If you are not going to use matlab to answer this question p
If you are not going to use matlab to answer this question please shoe in detail by hand on what exactly to type into matlab Thanks
Consider the following Matlab assignment statements: a 7.8; x 18, 12, -30, 45]; Write Matlab expressions for (a) b a sin x e (b) c X sin x (c) d 2a (d) g Vx sin 1.5Solution
a = 7.8;
x = [8,12,-30,45];
for j=1:4
b(j) = a*sin(x(j)) + exp(x(j));
c(j) = x(j)*sin(x(j));
d(j) = (x(j))^(2*a);
g(j) = ((x(j))^0.5)*(sin((x(j))^1.5));
