Assume that a three element row vector V already exists writ
Assume that a three element row vector V already exists write a single MATLAB statement that will print the contents of V diagonally from top left to bottom right Example V = [42. - 17, 9626. 0, 03654] Sample Output 42000 -17, 963 0, 037 Fill in the blanks below to complete the required MATLAB statement dear clc v = [42. - 17, 9626, 0, 03654] fprint
Solution
fprintf(\'%6.3f\ %14.3f\ %21.3f\ \',V)
% is the placeholder
.f indicates floating point.
the number before the f tells how many digits should be printed after the decimal.
the number before the . tells the total width.
