📄 rearr.m
字号:
function [x,p] = eqrearr(x0)
global eds
%
% [x,p] = rearr(x0)
%
% Rearranges x0 into coordinates (x) and parameters (p)
% WM: removed loop
l = length(eds.ActiveParams);
ncoo = length(x0)-length(eds.ActiveParams);
p = eds.P0;
p(eds.ActiveParams) = x0(ncoo+(1:l));
x = x0(1:ncoo);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -