Isuru Weeraratna
Asian Institute Of Technology
自 2011 起处于活动状态
Followers: 0 Following: 0
Feeds
提问
A particle moves along a straight line with an acceleration of a = 5 / (3s^1/3 + s^5/2), where s is in meters. Then it asks us to determine the particle's velocity when s = 2m, if it starts from rest when s = 1m. having a problem creating the simpson rule
Hint: have to modify the trapezium rule 1st function y = trap( fn, a, b, h ) n = (b-a)/h; x=a+[1:n-1]*h; y = sum(f...
14 years 前 | 0 个回答 | 0
0
个回答提问
Why is my linear search algorithm not producing the output?
% begins by comparing x and a1 i := 1 while(i =< n and x /= a1) i := i + 1 if i =< n loca...
14 years 前 | 1 个回答 | 0
