代码搜索:债权分割
找到约 1,468 项符合「债权分割」的源代码
代码结果 1,468
www.eeworm.com/read/206937/15285349
m golden.m
%--------------用黄金分割法求最佳lamuda---------------%
function [f_min,xinla] = Golden(region,x,s) %region 为搜索区域
sigma = 1/10^8;
GoldRate = (sqrt(5)-1)/2;
rate = GoldRate*( region(2)-region(1)
www.eeworm.com/read/206937/15285356
m golden.m
%-------------用黄金分割法求最佳lamuda------------%
function [f_min,xinla] = Golden(region,x,s) % 其中region 为搜索区域
sigma = 1/10^8;
GoldRate = (sqrt(5)-1)/2;
rate = GoldRate*( region(2)-regi
www.eeworm.com/read/38039/1091742
mnu sectools.mnu
SEC#TOOLS. 截面工具
Tools provided for Sketcher.
#
Intersect 求交
Choose two entities to be split at their intersection point.
选取两个图元在其交点处分割.
Trim 修剪
Trim entities (cut or extend them) to other entities or
www.eeworm.com/read/104865/15682211
dpr fsplit.dpr
program Fsplit;
uses
Forms,
Unit1 in 'Unit1.pas' {Form1};
{$R *.RES}
begin
Application.Initialize;
Application.Title := ' 文件分割器';
Application.CreateForm(TForm1, Form1);
Appl
www.eeworm.com/read/102552/15771895
htm subject_19920.htm
序号:19920 发表者:大象 发表日期:2002-11-01 12:00:32
主题:分割窗体之间如何互相控制
内容:本人做了一个2分的分割窗体,两个窗体的的基类都是cformview,窗体类为cview1,cview2,但是我想再cview2中或cmainframe中控制cview1窗体中的标签 控件(如m_title1)的显示,却不知怎么控制?
www.eeworm.com/read/432935/8562021
m example_area.m
% example_area.m
% 区域填充函数area绘图示例
y=magic(4)
area(y,'linewidth',2);
grid on;
colormap hot;
title('area function');
% 通过设置函数将分割线置于图形上层
set(gca,'layer','top');
www.eeworm.com/read/421716/10707739
m s3.m
%============================================s3.m=============================================
%Step3:对二值图像进行霍夫变换
%Mmax和Nmax分别为离散化的分割数,这里设置为1000
Mmax = 1000;
Nmax = 1000;
H = zeros(Mmax,Nmax);
www.eeworm.com/read/313223/13592089
m goldcut.m
function [x,fval]=GoldCut(f,xx)
%*********************************************************************
% 黄金分割法求单谷函数的极小值
% 调用:[x,fval]=GoldCut(f,[a b])
% 参数说明:
% x:的到极值的点
% fval:极小值
% f
www.eeworm.com/read/484893/6575948
m example_area.m
% example_area.m
% 区域填充函数area绘图示例
y=magic(4)
area(y,'linewidth',2);
grid on;
colormap hot;
title('area function');
% 通过设置函数将分割线置于图形上层
set(gca,'layer','top');