Using python
1. Define e 2 Fill two array X and Y with x and h(x) values for 41 uniformly spaced x coordinates in [-4, 4] Show transcribed image text 1. Define e 2 Fill two array X and Y with x and h(x) values for 41 uniformly spaced x coordinates in [-4, 4]
Answer
I have written the python code.
import math
import numpy as np
def h(x):
value = (1 / math.sqrt(2 * math.pi)) * math.exp((-1
OR
OR