Create a script in MATLAB Complete the following code in you
     Create a script in MATLAB. Complete the following code in your script:  Create a variable named \"testNumber\" and give it the value of the result of the calculation 1/3.  Take the 1000th power of testNumber, storing the value in the same variable (i.e. x * 3)  Take the 1/1000^th power of testNumber, storing the value in the same variable.  Comment your code.  After you run this code, look in the workspace and find your variable. Double click on it When you do this, you should get a new tile in MATLAB. Find the number in the grid and double click on that. What happened? Write a comment in your code describing this. 
  
  Solution
%% task1
 % (a)creating variable and storing the value of 1/3
 testNumber = 1/3;
 % (b)taking the 1000th power of testNumber
 testNumber = power(testNumber,1000);
 % (d) taking the 1/1000th power of testNumber
 testNumber = power(testNumber,1/1000);
e)after running this ,we getting 0 on dubbel clicking the workspace variable beacuse the value is less then Smallest positive normalized floating point number (realmin) .if you want to check actual value run eps(testNumber) you will get 4.9407e-324 which smaller then real min

