Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Exercise 1 . Sum of some entries ( 2 0 points ) Consider the outer product x : = ? T T , n R
Exercise Sum of some entries points
Consider the outer product : where denotes the set of all 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 as
input and outputs the scalar equal to the sum of all entries on or above the main diagonal
of the matrix
Write a MATLAB executable file YourlastnameYourfirstnameHWpm for a random vec
tor to compute as follows.
close all; clear; clc
rand;
SumOuterProduct ;
The file YourlastnameYourfirstnameHWpm should have exactly the above three lines and
nothing else. Please make sure to keep both the m files in the same folderdirectory 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 You will not need any builtin commands other than these.
Step 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