Puja
Followers: 0 Following: 0
Feeds
질문
After adding a command to get dotted line graph I am still getting solid line only in the legend i am getting dotted line
plot(x1 - x2,F,':g'); xlabel('Displacement(m)') ylabel('Spring Force(N)') legend('F')
6개월 전 | 답변 수: 1 | 0
1
답변질문
I am trying to plot a graph of two variables z1 and z2 versus t. but for some values of t I am getting z2 values negative in a graph. How to make these z2 values zero?
I am trying to plot a graph of two variables z1 and z2 versus t. but for some values of t I am getting z2 values negative in a g...
9개월 전 | 답변 수: 2 | 0
2
답변질문
I am unable to run this program.
second_oder_ode function second_oder_ode % SOLVE d^2x2/dt^2 = (k(Asin(wt)-x2)-cA(dx/dt)/h)/m % initial conditions: x(0...
10개월 전 | 답변 수: 1 | 0
1
답변질문
I am getting error not enough input arguments.
function fval=massSpringFun(t,y) %Function for mass-spring system %Define constants m=1; c=0.001; k=100; h=0.01; x1=0.01;...
10개월 전 | 답변 수: 1 | 0
1
답변질문
I should get a straight line graph in this equation after substituting initial conditions. I dont know where I am getting wrong. Can anyone help me with this?
tspan=[0,1]; z0=[0,0.01,0,0]; %initial position and velocity %[x0,vx0,y0,vy0] %solve the ODEs [t, z]=ode45(@rhs,tspan,z0); ...
10개월 전 | 답변 수: 1 | 0
1
답변질문
can anyone help me to get rid of the error not enough input arguments in line 7?
m = 2; c = 0.4; k = 4; x0 = [10; 0]; Time_Span = [0, 40.0]; xdot = zeros(2,1); xdot(1) = x(2); xdot(2) = -(1/m)*(c*x(2...
10개월 전 | 답변 수: 1 | 0
1
답변질문
Can anyone help me to get the graph of x2 vs t and x1 vs t using ode 45? md^2x2/dt^2-k(x1-x2)+c(dx2/dt)/h=0, m=1,k=100,c=0.001,h=0.01, at t=0,x1=0,x2=0,dx1/dt=0.01 ,dx2/dt=0
10개월 전 | 답변 수: 1 | 0
1
답변질문
I am not getting a graph for my matlab program but I can run a program . I am attaching my file. can anyone help me with this?
clear all; global m k c w_f F0 m=2; k=2000; c=10; w_f=12; F0=5; dt=0.005; t=0:dt:2; y0=[0 0.5 0]; %ODE function funct...
11개월 전 | 답변 수: 2 | 0