Waiting for answer This question has not been answered yet. You can hire a professional tutor to get the answer.
1)Exercises for Octave / Matlab: (a)If A is a matrix created by command A=rand(10,10);, what is a command to get the sub-matrix of elements whose both coordinates are odd? (b) Write an expression for
1)Exercises for Octave / Matlab:
(a)If A is a matrix created by command A=rand(10,10);, what is a command to get the sub-matrix of elements whose both coordinates are odd?
(b) Write an expression for the sum of the integers from 1 to 100.
(c) Write an expression for the sum of the powers of 0.5 to the numbers from 1 to 10.
2) Download and decompress (stock prices: date, open, high, low, close, volume) (18MB) stckPrcs.tar.bz2
(a) in Octave, 'load' BDXA (in B/BDXA.us.txt and Octave needs to be in directory whereBDXA.us.txtis):
BDXA=load('BDXA.us.txt');
(b) at which data theBDXA had the highest price (need to use functionsbelow for date as solution):
m = max(BDXA(:,2))
i = find(BDXA(:,2) == m)
date = BDXA(i, 1)
For the submission
1) send in the plain text the commands you used in part1) (a,b,c) : there should be 3 lines.
2) send in the plain text the 'date' variable you found in part 2) b) : there should be one number.