equality.m

来自「nn modelling and auto-pid controller」· M 代码 · 共 17 行

M
17
字号
function xout = equality(x, bcase, theta, beta)%% helper function for crossover.m, called by fsolve% equates the left and right trajectories%% Ian Mitchell, 4/23/01tau2p = x(1);tau2m = x(2);xout = zeros(2,1);xout(1) = crossX(bcase, theta, beta, 1, tau2p) ...          - crossX(bcase, theta, beta, 0, tau2m);xout(2) = crossY(bcase, theta, beta, 1, tau2p) ...	  - crossY(bcase, theta, beta, 0, tau2m);

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?