Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Exercise 1 . Sum of some entries ( 2 0 points ) Consider the outer product x : = ? T T , n R

Exercise 1. Sum of some entries (20 points)
Consider the outer product x:=?TT,nRn, 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 xinRn 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 for a random vec-
tor nR100 to compute s as follows.
close all; 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 files.
Hint: For your MATLAB function file, use the command sum (look it up in MATLAB
documentation) and basic arithmetic operations such as addition (+), multiplication (**),
power (hat(.)). You will not need any built-in commands other than these.
image text in transcribed

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Processing

Authors: David Kroenke

11th Edition

0132302675, 9780132302678

More Books

Students also viewed these Databases questions

Question

2. What should an employer do when facing an OSHA inspection?

Answered: 1 week ago