MAE 215 - Homework #1
All problems must be formatted correctly in the report to obtain full points. Code must be well commented and sectioned. Any information missing from the report or the simple act of typing out results in MATLAB and calling those results will result in a zero for the grade. If you have any questions or comments, feel free to join office hours or to email me.
Problem 1
You are given this data set that is a set of measured height, slant length, and perimeters for a Right Rectangle Pyramid:
H = Height[]
L = Length[]
W = Width[]
You need to:
1) Import data correctly and set them equal to any variable names of your choosing.
2) Find the maximum, minimum, and average values for vectors height, length, and width.
3) Use the maximum, minimum, and average values to determine the surface area of a pyramid by using this equation: lw+
Use fprintf to output all your results and suppress all other outputs. If you do not import the data correctly, you will only receive credit for this problem.