%part 1
time=0:1:10;
%part 2
gravity=[9.8,3.7];
%part 3
[g,t]=meshgrid(gravity,time);
disp(g);
disp(t);
%part4
dist=(1/2)*(g.*t.*t);
%part5
dist=[time' dist];
disp(dist)
![Execute main.m %part 1 time-0:1:10; %part 2 gravity [9.8,3.7]; %part 3 [g,t]-meshgrid(gravity, time); disp(g) disp(t); %part4](http://img.homeworklib.com/questions/b472e550-b40a-11ea-8405-9f73450d25a0.png?x-oss-process=image/resize,w_560)
how would i do this im matlab? im confused on the last two questions 3. [7...
I DESPERATELY NEED HELP WITH THIS DIFFERENTIAL EQUATIONS MATLAB ASSIGNMENT IM SUPPOSED TO BE LEARNING BUT WE HAVE A SUB AND HE DIDN'T TEACH IT! ITS EULER AND IMPROVED EULER IN MATLAB! HERE IS THE LINK FOR THE IMAGE FILE THAT SHOWS THE FULL INSTRUCTIONS FOR THE CODE. https://imgur.com/a/gjmypLs Also, here is my code so far that I borrowed form an old assignment but the data is all wrong and the application of the code is slightly different so either...
help wanted?
Introduction to Engineering I Spring 2019 MATLAB Homework Assignment 1 a) Create a matrix called d from the third column of matrix a. (Hint, typing d 22: 5: 821 b) Combine matrix b and matrix d to create matrix e, a two-dimensional matrix with three rows c) Combine matrix b and matrix d to create matrix f, a one-dimensional matrix with six rows and d) Create matrix g from matrix a and the first three element of matrix...
CODE GIVEN
% Create a program to plot the motion of the ping pong ball with
drag.
% The program will take inputs for velocity in m/s and angle of
launch.
% note that with a high speed camera I estmated a launch speed
for a ping
% pong ball could be 30 m/s.
vel=30; %m/s
angle=60;
% convert the degrees into radians so MATLAB likes it
angle=angle*pi/180;
% set initial values (time, distance, mass, gravity, drag)
x(1)=0; % meters...
For this project, each part will be in its oun matlab script. You will be uploading a total 3 m files. Be sure to make your variable names descriptive, and add comments regularly to describe what your code is doing and hou your code aligns with the assignment 1 Iterative Methods: Conjugate Gradient In most software applications, row reduction is rarely used to solve a linear system Ar-b instead, an iterative algorithm like the one presented below is used. 1.1...