LG
2022년부터 활동
Followers: 0 Following: 0
Feeds
질문
why is it not plotting?? blank graph
% Ecuaciones Diferenciales Ordinarias dy/dx=f(x,y) a resolver -------------- f1 =@(x,y1,y2) (-6*y2-5*y1)/.5 f2 =@(x,y1,y2) (...
2년 초과 전 | 답변 수: 1 | 0
1
답변질문
unable to perform assignment becuase the left and right sides have a different amount of elements HELPPP!!
f1=@(x,y1,y2) (-6*y2-5*y1)/.5 f2=@(x,y1,y2) diff(y1) % Condiciones iniciales ---------------------------------------------...
2년 초과 전 | 답변 수: 0 | 0
0
답변질문
why is it not plotting or graph? it comes out blank
R=6; L=0.5; C=0.2; Et=0; % Ecuaciones Diferenciales Ordinarias dy/dx=f(x,y) a resolver -------------- f1=@(x,y1) [x diff(...
2년 초과 전 | 답변 수: 2 | 0
2
답변질문
help in runge kutta 4 2nd order with establishing the functions
% Ecuaciones Diferenciales Ordinarias dy/dx=f(x,y) a resolver -------------- f1 =@(x,y1,y2) f2 =@(x,y1,y2) % Condiciones ...
2년 초과 전 | 답변 수: 1 | 0
1
답변질문
how can i write the RLC equations? (image)
% Método de RK4Orden --------------------------------------- % x-Vector de tiempo % y1,y2-Vectores de carga y corriente % li-...
2년 초과 전 | 답변 수: 1 | 0
1
답변질문
It is not displaying both plots
x=[2012 2013 2014 2015 2016 2017] y=[10 10.9 11.7 12.6 13.8 14.9] plot(x,y,'dk') xlabel('Año') ylabel('Eje y') title('P...
2년 초과 전 | 답변 수: 1 | 0
1
답변질문
The graph is coming out blank
The graph for plot(x0,y0) comes out with no values, it´s blank. How can I solve this? clear all clc f=@(x,y) -y/.1; %función ...
2년 초과 전 | 답변 수: 2 | 0