Saturday, May 31, 2008

Assignment # 4 , Q # 4, 5, 6, 7, 8, 9

Q 4. On Octave find a command to make a 256 x 256 matrix with the rows, all the same, equal to the numbers 0 to 255.
Ans. ones(256,1) * [0:1:255]
Q5. On Octave find a command to make a 256 x 256 matrix with the columns, all the same, equal to the numbers 0 to 255.
Ans.[ ones(256,1) * [0:1:255]]'
Q 6. On Octave find a command to make a 256 x 256 matrix of all zeros.
Ans. zeros(256)
Q(7)On Octave find a command to make a 256 x 256 matrix of all ones.
Ans. ones(256)
Q(8).On Octave find a command to make a 256 x 256 matrix of the value 128.
Ans. 128 * ones(256)
Q(9) same as Q 6

No comments: