您的位置:首页 > 编程语言 > MATLAB

matlab函数集锦

2007-06-18 20:01 375 查看
matlab函数集锦
ISFINITE(X), ISINF(X), or ISNAN(X)
pwd 当前目录
eval 执行matlab函数
CONV2( ,'same') 卷积
F = reshape(f,3,3);

options = optimset('Jacobian','off');

a0 = [0 0 0 0 0, 0];
[af,resnorm,residual,exitflag,output,lambda,jacobian] = lsqnonlin(@(x) costRectif(x,width,height,ml,mr), a0,
[-pi/2, -pi/2, -pi/2, -pi/2, -pi/2, -1.5], [pi/2, pi/2, pi/2, pi/2, pi/2, 1.5],options);

图像变换
//imwarp(图像IL(:,:,c), 变换矩阵TL, 'bilinear', 界限盒bb);、、这个不是系统函数。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: