//Program 11.5 //Program To Calculate the value of the function //Y=A*X1+B*X2+C*X3 clear; clc; close; //Data A=1; B=2; C=3; X1=4; X2=5; X3=6; //Compute the function Y=A*X1+B*X2+C*X3; //Display the result in command window disp(Y,"Y = A*X1+B*X2+C*X3 = ");