Julia Programming Language for Scientific Computing University of Konstanz, SS 2015 EXERCISE SHEET 1 Review the video Getting Started with Julia by Leah Hanson (part 1 of 4) http://blog.l eahhanson.us/pages/speaking.html https://www.youtube.com/watch?v=pHQdSmySQ_w&spfreload=10 Read the Julia Language Documentation, Sections 1.2 to 1.4 Install JULIA on your personal computer. Solve the following exercises by filling in the details (JULIA code and answers). Submit by email to dietmar.saupe@uni-konstanz.de by Thursday, April 16, 12 noon. #Print the JULIA version number #Create a null vector of size 10 #Create a null vector of size 10 but the fifth value which is 1 #Create a vector with values ranging from 10 to 49 #Create a 3x3 matrix with values ranging from 0 to 8 #Find indices of non-zero elements from [1,2,0,0,4,0] #Create a 3x3 identity matrix #Create a 5x5 matrix with values 1,2,3,4 just below the diagonal #Create a 3x3x3 array with random values #Create a 8x8 matrix and fill it with a checkerboard pattern #Create a 10x10 array with random values and find the minimum and maximum values #Create a checkerboard 8x8 matrix using the tile function #Normalize a 5x5 random matrix (between 0 and 1) #Multiply a 5x3 matrix by a 3x2 matrix (real matrix product) #Create a 5x5 matrix with row values ranging from 0 to 4 #Create a vector of size 10 with values ranging from 0 to 1, both excluded #Create a random vector of size 10 and sort it #Consider two random array A anb B, check if they are equal #Create a random vector of size 30 and find the mean value