photo

Puja


Last seen: ungefär 2 månader ago Active since 2024

Followers: 0   Following: 0

Statistics

  • Thankful Level 2

View badges

Feeds

View by

Question


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')

ungefär 2 månader ago | 1 answer | 0

1

answer

Question


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...

5 månader ago | 2 answers | 0

2

answers

Question


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...

6 månader ago | 1 answer | 0

1

answer

Question


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;...

6 månader ago | 1 answer | 0

1

answer

Question


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); ...

6 månader ago | 1 answer | 0

1

answer

Question


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...

6 månader ago | 1 answer | 0

1

answer

Question


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...

6 månader ago | 2 answers | 0

2

answers