FAMILIARIZATION OF SCIENTIFIC COMPUTING
  OBJECTIVE   ·    To familiarize different functions for scientific computing with examples     LEARNING OUTCOMES   ·    After the completion of this experiment students will be able to execute small scripts using different arithmetic functions     SOFTWARE USED:                    MATLAB ®  R2017a   THEORY   The different arithmetic functions of MATLAB are listed below.   Y = abs( X ) returns the  absolute value  of each element in array X. If X is complex, abs(X) returns the  complex magnitude .   abs  - Absolute value and complex magnitude   angle - Phase angle   complex -  Create complex array   isreal - whether array is real   real - Real part of complex number   sinc – returns an array, y, whose elements are the  sinc  of the elements of the input, x.   imag - Imaginary Part of Complex Number   sin – Sine of argu...