//Exa 1.2 clc; clear; close; // given : A=[2 5 6] // vector A B=[1 -3 6] // vector B A+B // summation of two vectors A-B // subtraction of two vectors disp(A+B,"summation of two vectors:") disp(A-B,"subtraction of two vectors:")