代码搜索:债权分割
找到约 1,468 项符合「债权分割」的源代码
代码结果 1,468
www.eeworm.com/read/144427/12795648
txt hs1101参数资料.txt
将曲线分割成十段近似的线段段内近似成直线则有:
y=((y2-y1)/(x2-x1))*x + (y1*x2-y2*x1)/(x2-x1)
x y
RH Cx (pF)
0 163.125
10 166.5
20 170
30 173.375
40 176.25
50 179.375
60 183.125
70 186.375
80 190.7
www.eeworm.com/read/141644/12992865
cpp bo5-52.cpp
// bo5-52.cpp 广义表的书写形式串为HString类型
#include"c4-2.h" // 定义HString类型
#include"bo4-2.cpp" // HString类型的基本操作
Status sever(HString &str,HString &hstr)
{ // 将非空串str分割成两部分:hstr为第一个','之前的子串,str为之后的子串
www.eeworm.com/read/328441/13026653
m fsxgold.m
function x=fsxgold(f,e,a,b)
% fsxgold函数 黄金分割算法
% x=fsxgold(f,e,a,b)为输入函数 f为函数 e为允许误差 (a,b)为搜索空间;
L=(5^(1/2)-1)/2;
u=a+L*(b-a);f2=subs(f,u);t=a+b-u;f1=subs(f,t);
while (abs(u-t)>=e)
if (f1
www.eeworm.com/read/242302/13078437
txt 如何在a文件中找到行首字为0的行,并复制到b文件中相同的行.txt
下面的这个例子采用的是Line Input逐行读入,比较慢,但容易理解。如果想要快速的方法,可以利用下面的思路并参考QA001860 “如何按行分割字符串”。在这个例子中我们假设A和B文件行数相同。
Open "A" For Input As 1
Open "B" For Input As 2
Open "TempB" For Output As 3
www.eeworm.com/read/315928/13534800
m goldenf.m
function root=GoldenF(f,a,b,eps)
% 黄金分割法求函数f在[a,b]上的一个零点
% 函数名:f
% 区间左端点a
% 区间右端点b
% 根的精度:eps
% 求出的函数零点:root
if(nargin==3)
eps=1.0e-4;
end
f1=subs(sym(f),findsym(sym(f)),a);
f2=subs(s
www.eeworm.com/read/308708/13695046
cpp bo5-52.cpp
// bo5-52.cpp 广义表的书写形式串为HString类型
#include"c4-2.h" // 定义HString类型
#include"bo4-2.cpp" // HString类型的基本操作
Status sever(HString &str,HString &hstr)
{ // 将非空串str分割成两部分:hstr为第一个','之前的子串,str为之后的子串
www.eeworm.com/read/307670/13717664
cpp bo5-52.cpp
// bo5-52.cpp 广义表的书写形式串为HString类型
#include"c4-2.h" // 定义HString类型
#include"bo4-2.cpp" // HString类型的基本操作
Status sever(HString &str,HString &hstr)
{ // 将非空串str分割成两部分:hstr为第一个','之前的子串,str为之后的子串
www.eeworm.com/read/382398/6321323
cpp bo5-52.cpp
// bo5-52.cpp 广义表的书写形式串为HString类型
#include"c4-2.h" // 定义HString类型
#include"bo4-2.cpp" // HString类型的基本操作
Status sever(HString &str,HString &hstr)
{ // 将非空串str分割成两部分:hstr为第一个','之前的子串,str为之后的子串
www.eeworm.com/read/487113/6523715
txt golden.txt
程序:定义函数
%黄金分割法
function f=gnew(f,a,b,epsilon);%定义函数和精度
la=0.618;
x1=b-la*(b-a);f1=f(x1);%左试点
x2=a+la*(b-a);f2=f(x2);%右试点
for k=1:(log(epsilon/(b-a))/log(0.618)+2)
fprintf(1,' 迭代次数 k=
www.eeworm.com/read/484022/6589258
txt andrei.rar.txt
操作系统进程调度实验
文件: 最大100M,不要分割文件,名字不能太长
请用英文名,尽量和原工程文件名相同
只支持.rar, .zip, .gz文件后缀名
源码类别
请选择分类(点击+展开):
源码/资料
Windows编程
界面编程
按钮控件
组合框控件
编辑框
TreeView控件
Static控件
PropertySheet
RichEdit
L