Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Cannot use built in functions like triu(). Only basic arithmetic operations and sum function. Consider the outer product X:=xx,xRn, where Rn denotes the set of
Cannot use built in functions like triu(). Only basic arithmetic operations and sum function.
Consider the outer product X:=xx,xRn, where Rn denotes the set of all n1 vectors with real entries. Without using any loops (such as for, while, if else), we want to write a MATLAB function named SumOuterProduct.m that takes an arbitrary vector xRn as input and outputs the scalar s, equal to the sum of all entries on or above the main diagonal of the matrix X. Write a MATLAB executable file YourlastnameYourfirstnameHW2p1.m that calls your function SumOuterProduct.m for a random vector xR100 to compute s as follows. closeall;clear;clc;x=rand(100,1);s=SumOuterProduct(x) The file YourlastnameYourfirstnameHW2p1.m should have exactly the above three lines and nothing else. Please make sure to keep both the .m files in the same folder/directory so that the executable file can "see" the function it calls. Submit both .m filesStep by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started