Electronics Engineering
Question For each of the following, give a (brief) description of what’s wrong with the code then fix it. %plot a spiral on cartesian coordinates t = linspace(0,2*pi,100);...
Question A noise that grows louder over time is measured six times, and the following dataset is created (data in NoiseTime.txt and NoiseLoud.txt): Time (s) 1...
Question Make a pretty 3D curve. Write a function (as a function file) that takes in one parameter, t, and outputs three coordinates, x,y,z. Feel free to start with the spiral3D ...
Question Newton’s method is a simple algorithm for approximating the roots of an equation. This algorithm works by taking the derivative (slope) of a function at a point alo...
Question Write a MATLAB function (upper Triangle) using the functions you previously created to convert a matrix to upper triangular form. Start with row 1, column1. Find the row ...
Question Assume the same set up as in Q1—100 nodes scattered over a 100 X 100 square grid. Use Poisson distribution to find the following. Do not use Binomial distribution. ...
Question Write a MATLAB program that will read in rocket velocity data from a delimited text file named rocketVelData.txt and determine and plot the acceleration and position of ...
Question Write a MATLAB program that will read in the data from the Microsoft Excel file named tempData.xlsx and determine estimates of the temperature at 5.5 minutes and 10.0 min...
Question Write a MATLAB program that will read in the data from the Microsoft Excel named tempData.xlsx And determine the linear and quadratic best fit curves for the temperature...
Question A class teacher is preparing the final grades for the students. She is entering grades into a table which will include scores from 5 homeworks, 3 midterms and 1 final. Wr...
Question Write a program (in any language, including matlab) to do the following. Consider a square region of 100 X 100 units. Scatter 100 nodes uniformly randomly over this squar...
Question Write a MATLAB program that will read in the data from the Microsoft Excel file named forceData.xlsx and determine the best fit curve for the force data. The origin data ...
