統計
MATLAB Answers
3 質問
0 回答
ランク
of 179,660
コントリビューション
0 問題
0 解答
スコア
0
バッジ数
0
コントリビューション
0 投稿
コントリビューション
0 パブリック チャネル
平均評価
コントリビューション
0 ハイライト
平均いいねの数
Feeds
質問
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...
5年弱 前 | 1 件の回答 | 0
1
回答質問
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年以上 前 | 0 件の回答 | 0
0
回答質問
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年以上 前 | 1 件の回答 | 0
