This is a Matlab Question. I need exact answers. Thank you for your help. Assume
ID: 3845607 • Letter: T
Question
This is a Matlab Question.
I need exact answers.
Thank you for your help.
Explanation / Answer
1.
A = [1 3;4 5]
B=sum(A)
B=B'
A = [A B]
sum(A) sums the column of 2 dimentional matrix and give answer in 1x2 matrix i.e. row
B=B' converts the result row to column
A = [A B] appends the column to the given two dimetional matrix
But I think the question should be "Write code that totals all the rows..." instead of "Write code that totals all the columns..." Please confirm as the other two answers are based on that.
Assuming it is row, the answer would be as follow
1.
A = [1 3;4 5;4 7; 3 0; 2 8; 9 3]
% get the total of each row
total = sum(A,2)
%append the total column in the original array
B = [A total]
2
% Find the highest value in the total array
[M,I] = max(total)
% get the column 1 for the highest total and display result on screen
fprintf('Coulmn 1 value for highest total row %d', I)
fprintf (' is %d ', A(I,1))
% Find the smallest value in the total array
[M,I] = min(total)
% get the column 1 for the smallest total and display result on screen
fprintf('Coulmn 1 value for smallest total row %d', I)
fprintf (' is %d ', A(I,1))
3
% get the average of the total
avg = mean(total)
%find the location of the value above average
C=find(A > avg)
%find all the values above average
A(C)
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.