initpt.m
来自「一个很好用的摄像机标定程序」· M 代码 · 共 21 行
M
21 行
% initpt
% ------
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% function [n,m,x]=initpt(nprob,factor)
% This function generates the starting points for each problem
% by calling the function initf, which sets m, n and the starting
% point xo for the number of problem given to it. If xo is the
% standard starting point, then x will contain factor*xo, except
% if xo is the zero vector and factor is not unity, then all the
% components of x will be set to factor.
%
% Created by Madhu Lamba on 10/30/94.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
function [n,m,x] = initpt(nprob,factor)
[n,m,x] = initf(nprob)
x=factor*x
%
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?