(b)Using Matlab as a software for simulation, write Matlab statements to compute and display the following expression, given the values
1
2021-08-22T07:14:54-0400
Given that
x=3-4i;
y=4+5i
Find out
x+y,xy,x/y,e^y
Matlab Statement
- 1x=3-4i;
- y=4+5i
- disp(x+y)
o/p-> 7.0000 + 1.0000i
- disp(x*y)
o/p-> 32.0000 - 1.0000i
- disp(x/y)
o/p-> 7.0000 + 1.0000i
- disp(exp(x))
Need a fast expert's response?
Submit order
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
Learn more about our help with Assignments:
Algorithms
Comments