IBM机器C盘空间的丢失 RRbackups
IBM机器C盘空间的丢失 一台IBM机器,用了一阵子,C盘空间不够了。检查,看见23G的c盘用掉了22G。可是选中C盘的文件,看看属性又只有8G。于是对采用的如下手段分析:1,把IE的temporary文件清空,这个没有多出多少;2,把我的电脑->右键->属性中的系统还原关闭,还是没有多出多少空间;3,桌面->属性->屏保->电源->休眠给关闭,这下省出了1G的空间。但是和丢失的13G相比,还是差的远。没有办法,杀毒。超级兔子,也没有折腾出多少空间。这么多的空间丢失,很可能是什么备份软件搞了鬼。于是把所有的文件都显示,发现有几个隐藏的文件出来了。有一个RRbackups的目录,不让进去,windows告诉我大小为0。把所有文件选中,还是空间少了10多G。这个RRbackups最可疑。干脆进入安全模式。F8进入。这下,这个文件原形毕露。居然12G大小!再上网查,发现原来是IBM搞的鬼。这玩意儿没有啥用,吃了空间还不提醒,正常的window下还告诉你大小为0,简直是吃人不吐骨头。如何清理,有一段话我拷贝如下。
如何在系统下手动删除Thinkpad用Rescue and Recovery创建的系统备份
适用机型:
所有ThinkPad R50; 所有ThinkPad R50e; 所有ThinkPad R50p; 所有ThinkPad R51; 所有ThinkPad R51e; 所有ThinkPad R52; 所有ThinkPad R60; 所有ThinkPad R60e; 所有ThinkPad T40; 所有ThinkPad T40p; 所有ThinkPad T41; 所有ThinkPad T41p; 所有ThinkPad T42; 所有ThinkPad T42p; 所有ThinkPad T43; 所有ThinkPad T43p; 所有ThinkPad T60; 所有ThinkPad T60p; 所有ThinkPad X31; 所有ThinkPad X32; 所有ThinkPad X40; 所有ThinkPad X41; 所有ThinkPad X41t; 所有ThinkPad X60; 所有ThinkPad X60s; 所有ThinkPad Z60m; 所有ThinkPad Z60t
文档内容:用户有如下方式来删除自己创建的系统备份:1.进入Rescue and Recovery 程序界面,找到删除备份选项删除用户自己创建的系统备份(不同版本的Rescue and Recovery可能界面有所不同);
2.通过卸载Rescue and Recovery 程序来删除用户自己创建的系统备份,需要注意的是,一旦卸载该软件,则用户自己创建的所有系统备份都会被删除;
3.用户可以在系统安全模式下,在:工具->文件夹查看->选项 中,把“隐藏受保护的操作系统文件(推荐)”的钩去掉和选择“显示所有文件和文件夹”,直接删除系统备份所在盘符根目录下的RRbackups目录即可,需要注意的是,一旦删除该文件夹,则用户自己创建的所有系统备份都会被删除。 本贴地址为»http://bbs.fzonet.com/rcds/showpost.asp?ThreadID=1248复制
Wednesday, August 26, 2009
Monday, August 24, 2009
Wednesday, July 22, 2009
Feeling a little despair
In this days, I feelling a little despair. What do you think about research?
If doing research is to reconsider the case you consider. If you consider
work your have done again and agian, you will find problems in your work
again and again. You will need to modify your method and model again and
again? Is this research? What do you think about your research work?
If doing research is to reconsider the case you consider. If you consider
work your have done again and agian, you will find problems in your work
again and again. You will need to modify your method and model again and
again? Is this research? What do you think about your research work?
Tuesday, July 14, 2009
fsolve
fsolve
fsolve finds a root (zero) of a system of nonlinear equations.
[x,fval,exitflag,output,jacobian]= fsolve(fun,x0,options)
输出:
x——零点值;
fval——x带入的最终的误差值
exitflag——迭代终结原因表示数:(1-收敛于x;2-x迭代误差小于指定值;3-fval迭代误差小于指定值;4-搜索方向的幅值小于指定值;0-迭代次数超过最指定数(Maxlter)或者fval超过指定值(FunEvals);-1-算法终止按照输出函数(output function);-2-貌似算法收敛于非零跟;-3-确信界限太小;-4-线性搜索方法不再适用)
output——迭代过程信息:(iterations-迭代次数,funccount-函数值、亦即每次的fval,algorithm-用的算法,cgiterations-PCG迭代数(只用于large-scale algorithm),stepsize-最终一步步长(只用于medium-scale algorithm),firstorderopt-一阶最优近似值(只用于large-scale algorithm))
jacobian——输出Jacobian矩阵值
输入:
fun——需要解的方程或方程组,简单可以直接引入,复杂要写成.m的函数形式
x0——迭代初始值
options——计算过程的指定参数,由optimset设定:
(1)LargeScale——是否采用 large-scale algorithm,'on'-'off'。(方程有定解时on)
The following options are used by both the medium-scale and large-scale algorithms
(2)DerivativeCheck——比较微分值,给出的Jacobian矩阵值和差分计算结果
(3)Diagnostics——函数诊断信息
(4)DiffMaxChange/DiffMinChange——有限差分时变量的最大最小变化
(5)Display——显示控制项:off -不显示,iter-每步显示,final-显示最后一步
(6)Jacobian——Jacobian输出控制项,on-用户定义的Jacobian矩阵值,off-有限差分代替
(7)FunValCheck——是否显示函数值违法信息( complex, Inf, or NaN)on-输出
(8)MaxFunEvals——Maximum number of function evaluations allowed
(9)MaxIter——Maximum number of iterations allowed
(10)TolFun——Termination tolerance on the function value
(11)TolX——Termination tolerance on x
(12)TypicalX——Typical x values
(13)OutputFcn ——函数执行的每步被调用的函数:odephas2(画出2D的平面相位图)。Odephas3(画出3D的平面相位图),odeplot(画出解的图形),odeprint(显示中间结果)
From:http://hi.baidu.com/ls_song/blog/item/9eb3ad1876f8004d42a9ad49.html
fsolve finds a root (zero) of a system of nonlinear equations.
[x,fval,exitflag,output,jacobian]= fsolve(fun,x0,options)
输出:
x——零点值;
fval——x带入的最终的误差值
exitflag——迭代终结原因表示数:(1-收敛于x;2-x迭代误差小于指定值;3-fval迭代误差小于指定值;4-搜索方向的幅值小于指定值;0-迭代次数超过最指定数(Maxlter)或者fval超过指定值(FunEvals);-1-算法终止按照输出函数(output function);-2-貌似算法收敛于非零跟;-3-确信界限太小;-4-线性搜索方法不再适用)
output——迭代过程信息:(iterations-迭代次数,funccount-函数值、亦即每次的fval,algorithm-用的算法,cgiterations-PCG迭代数(只用于large-scale algorithm),stepsize-最终一步步长(只用于medium-scale algorithm),firstorderopt-一阶最优近似值(只用于large-scale algorithm))
jacobian——输出Jacobian矩阵值
输入:
fun——需要解的方程或方程组,简单可以直接引入,复杂要写成.m的函数形式
x0——迭代初始值
options——计算过程的指定参数,由optimset设定:
(1)LargeScale——是否采用 large-scale algorithm,'on'-'off'。(方程有定解时on)
The following options are used by both the medium-scale and large-scale algorithms
(2)DerivativeCheck——比较微分值,给出的Jacobian矩阵值和差分计算结果
(3)Diagnostics——函数诊断信息
(4)DiffMaxChange/DiffMinChange——有限差分时变量的最大最小变化
(5)Display——显示控制项:off -不显示,iter-每步显示,final-显示最后一步
(6)Jacobian——Jacobian输出控制项,on-用户定义的Jacobian矩阵值,off-有限差分代替
(7)FunValCheck——是否显示函数值违法信息( complex, Inf, or NaN)on-输出
(8)MaxFunEvals——Maximum number of function evaluations allowed
(9)MaxIter——Maximum number of iterations allowed
(10)TolFun——Termination tolerance on the function value
(11)TolX——Termination tolerance on x
(12)TypicalX——Typical x values
(13)OutputFcn ——函数执行的每步被调用的函数:odephas2(画出2D的平面相位图)。Odephas3(画出3D的平面相位图),odeplot(画出解的图形),odeprint(显示中间结果)
From:http://hi.baidu.com/ls_song/blog/item/9eb3ad1876f8004d42a9ad49.html
Saturday, July 11, 2009
Monday, July 6, 2009
Saturday, May 23, 2009
Our paper has been published online
Our paper has been published online, you can down from
http://www.springerlink.com/content/h67u748626582230/fulltext.pdf
Thanks for your attention.
http://www.springerlink.com/content/h67u748626582230/fulltext.pdf
Thanks for your attention.
Wednesday, May 20, 2009
No response
I have installed Mathemacia software, but when I opened the mathematica Kernel, the state of it no response, why?
Subscribe to:
Posts (Atom)