Ask your own question, for FREE!
Computer Science 19 Online
OpenStudy (anonymous):

HELP! I am writing a program that computes integrals using the Runge-kutta 4th order. my equation is \[\theta\]'' + b * \[\theta\]' + sin(\[\theta\]) = F*cos(wt) where b, F, w, and t are given values. I am supposed to output \[\theta\] and \[\theta\]' for changes in t(time) but my problem comes from the fact that my function parameters are unknown. Here is a sample of my code: double t=0, wd=0.66, b=0.25, F=1.5, theta, h=2*(pi)/100, maxTime; double k1,k2,k3,k4; for(t=t; t

OpenStudy (anonymous):

double f(double wd, double b, double F, double theta) {

OpenStudy (anonymous):

I don't think it's possible, you should express theta as theta = blablabla

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!