matlab老是显示input argument '' is undefined
matlab老是显示input argument '' is undefined我没法在matlab上面运行我写的这东西,因为总是显示Input argument "currentValues" is undefined.Error in ==> pendulumODE at 10theta = currentValues(1);function derivs = pendulumODE(t,currentValues,L);% Nonlinear Pendulum:(odefun)%% dTheta/dt = omega% dOmega/dt = -gsin(theta)/L% % Our job is to set:dervis = [dTheta/dt; dOmega/dt]% using the currentValues = [theta; omega].g = 9.8; % m/s^2theta = currentValues(1);omega = currentValues(2);dTheta = omega;dOmega = -g*sin(theta)/L;derivs = [dTheta; dOmega];L = 0.248; % length in metersinitialValues = [0.5,0]; % theta(t=0) and omega(t=0)timeSpan = [0 10]; % seconds[t,theta] = ode45(@(t,v) pendulumODE(t,v,L),timeSpan,initialValues);plot(t,theta)xlabel('time (seconds)');ylabel('\theta (blue),\omega (green)')
最佳回答
currentValues还没有定义,所以theta = currentValues(1);这样的语句不能执行。你的derivs是一个函数,调用它的时候应该把t,currentValues,L都传递给它才行。以上。专业路过的老狼
最新回答共有2条回答
-
2026-03-30 14:25:31平常的花生
回复currentValues还没有定义,所以theta = currentValues(1);这样的语句不能执行。你的derivs是一个函数,调用它的时候应该把t,currentValues,L都传递给它才行。以上。专业路过的老狼
热门文章
- 康达学院专转本五年制
- 高考一个考场分ab卷吗
- not only but also用法
- 某物体做自由落体运动,从释放开始计时,则物体在前2s内的平均速度为______m/s,物体下落2m时的速度大小为______m/s.
- 三角函数公式大全表格
- 地理中考必背知识点2022
- 2013-2014学年小学六年级科学上学期期末考试试卷及答案
- 人教版2014-2015学年小学五年级英语第二学期期中教学质量检测试卷及答案
- 【Linux驱动开发】设备树详解(二)设备树语法详解
- 别跟客户扯细节
- 在别的城市买房子能落户吗
- 卖房前要把装修贷还完吗
- 高中政治教学提高教学效果的方法探究
- “互联网+”背景下的初中英语课堂教学改革与创新策略研究
- 2022年终止合同范本
- 租房合同范本范文
- 如何挑选土豆
- 如何挑选土鸡
