Statistics
3 Questions
0 Answers
RANK
197,170
of 301,472
REPUTATION
0
CONTRIBUTIONS
3 Questions
0 Answers
ANSWER ACCEPTANCE
33.33%
VOTES RECEIVED
0
RANK
of 21,293
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 174,655
CONTRIBUTIONS
0 Problems
0 Solutions
SCORE
0
NUMBER OF BADGES
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Discussions
AVERAGE NO. OF LIKES
Feeds
Question
I want to run a list of distance values through these two formulas for force and combine them into one 1x3 matrix in the form [dist force1 force2].]
clear; clc mmass=input('What is the mass of the main object?'); sat1=input('What is the mass of the first satellite?'); sat2...
4 years ago | 1 answer | 0
1
answerQuestion
Trouble with For Loop in Differential Equations
clear all %Problem 1a syms x(t) Fmag; Dx=diff(x); k=36; Fmag=4*cos(4*t); disp(['dx^2/d^2t +' num2str(k) 'x=' char(Fmag)]) ...
5 years ago | 0 answers | 0
0
answersQuestion
Trying to solve a differential equation
syms x(t) Dx=diff(x); x(t)=dsolve(3*diff(x,t,2)+2*diff(x,t)+108*x==Fmag,x(0)==0,Dx(0)==4)
5 years ago | 1 answer | 0
