存档

‘软件编程’ 分类的存档

Word2007中空格变成点 按空格也是点

2009年2月18日 deen 1 条评论

今天我在用Word2007时 遇到Word2007中空格变成点   按空格也是点.

这对于已经习惯Word2003还刚开始用Word2007的用户来说是个麻烦,原来word2003只要在 工具-"选项"-"视图"选项卡里 把"格式标记"中的空格去掉就可以解决问题.

但是,在Word2007中我找了半天 最后终于找到了

我把这一过程与大家分享
首先选择最上方的下三角形,选择其中的"其他命令",打开一对话框,在选择"显示",把"显示所有格式标记"前面的勾去掉即可.如图所示.

6cb97709d78297ab2fddd46b

6cb97709d78297ab2fddd46b22

分类: 软件编程 标签:

word2007页码设置技巧(二)—-页码从任意页开始及页码不连续

2009年2月18日 deen 没有评论

1、将光标定位于需要开始编页码的页首位置。

2、选择“插入-分隔符”,打开“分隔符”对话框,在“分隔符类型”下单击选中“下一页”单选钮。

 

122

3.并将光标定位于页脚处。

这样就可以页码从任意页开始如下操作同word2007页码设置技巧(一)
4页码不连续操作,重复以上操

分类: 软件编程 标签:

word2007页码设置技巧(一)—-设置页码从第二页开始

2009年2月17日 deen 没有评论

我们在使用Word时,经常要根据实际情况来编排页码,那么只要掌握了下面列出的几种常见页码的编排方法,就可以做到word页码随意定:

一、页码从第二页开始

1、选择“插入-页码”,在页眉与页脚中选择"页码"然后在对应位置插入页码,1

2、这是会进入"设计"菜单,在“首页不同”复选框中的对钩.

2

3、在页码中,进行如下操作.“起始页码”后的框中键入数字“0”

3

4

 

分类: 软件编程 标签:

小旋风asp服务器架设软件推荐

2009年2月16日 deen 没有评论

     在设计Asp网页的时候,有时候会碰到没有安装Asp服务器。而电脑里有时无法找到对应操作系统的IIS(internet 信息服务)或者不能安装IIS。特别是Windows Xp home版的时候 安装起来很痛苦。这个时候就可以使用一个只有1M的ASP服务器软件(小旋风ASPWEB2005服务器)。

      该软件是在NETBOX核心下开发的一套强大简洁的ASPWEB服务器,使用这个软件的您完全可以抛弃体积庞大的WINNT,WIN2000服务器系统及漏洞百出的IIS了。现在你可以在任何一个系统上调试和发布您的ASP程序了。目前测试通过的操作系统为:Windows 98;Windows 98 SE;Windows ME;Windows NT+IE4;Windows 2000;Windows XP;Windows .NET Server。现在完全支持ACCESS,SQL数据库!在您碰到紧急事件,需要快速搭建一个asp服务器,那么这款软件再适合不过了,注意:该软件默认占用“80”端口,端口可以随意修改!

     这款软件用来调试ASP程序是最好不过的了!简单!好用!

下载地址:http://www.ouyaoxiazai.com/download/y2773.html

注意下载后软件的解压密码是:www.ouyaoxiazai.com

说明:

小旋风ASPWEB2005服务器。该软件是由残剑无敌在NETBOX核心下开发的一套强大简洁的ASPWEB服务器,使用这个软件的您完全可以抛弃体积庞大的WINNT,WIN2000服
务器系统及漏洞百出的IIS了。现在你可以在任何一个系统上调试和发布您的ASP程序了。目前测试通过的操作系统为:Windows 98;Windows 98 SE;Windows ME;Windows NT+IE4;
Windows 2000;Windows XP;Windows .NET Server。现在完全支持ACCESS,SQL数据库
操作说明
1.安装小旋风ASPWEB服务器2005.很简单哦。
2.把您的ASP程序COPY到安装目录中的WWWROOT的目录下即可

分类: 软件编程 标签:

用matlab进行泰勒级数展开

2008年10月4日 honkin 没有评论

用taylor函数进行泰勒级数展开。该函数的调用格式如下:

1. taylor (f, n, v):该函数的结果返回n-1级的麦克劳林多项式。f为函数表达式,v为表达式中的独立变量

2. taylor(f,n,v,a):该函数返回f在x=a处的泰勒级数表达式。

上面两式中,n v a没有顺序先后之分。taylor函数根据他们的位置很类型确定他们的用途,还可以忽略他们中的任意一个。

例如,求常见的基本初等函数exp(x)和 sin(x)的taylor展开式:

>> syms x;
>> f=exp(x);

>> t=taylor(f,4)
t =
1+x+1/2*x^2+1/6*x^3

>> f1=sin(x);
>> t=taylor(f1,4)
t =
x-1/6*x^3

分类: 软件编程 标签:

Honkin Reading List 080913

2008年9月13日 honkin 2 条评论
分类: 软件编程 标签: ,

matlab中字符处理函数汇总

2008年5月27日 honkin 没有评论

General.
    char        – Create character array (string).
    strings     – Help for strings.
    cellstr     – Create cell array of strings from character array.
    blanks      – String of blanks.
    deblank     – Remove trailing blanks.
String tests.
    iscellstr   – True for cell array of strings.
    ischar      – True for character array (string).
    isspace     – True for white space characters.
    isstrprop   – Check if string elements are of a specified category.
String operations.
    regexp      – Match regular expression.
    regexpi     – Match regular expression, ignoring case.
    regexprep   – Replace string using regular expression.
    strcat      – Concatenate strings.
    strvcat     – Vertically concatenate strings.
    strcmp      – Compare strings.
    strncmp     – Compare first N characters of strings.
    strcmpi     – Compare strings ignoring case.
    strncmpi    – Compare first N characters of strings ignoring case.
    strread     – Read formatted data from string.
    findstr     – Find one string within another.
    strfind     – Find one string within another.
    strjust     – Justify character array.
    strmatch    – Find possible matches for string.
    strrep      – Replace string with another.
    strtok      – Find token in string.
    strtrim     – Remove insignificant whitespace.
    upper       – Convert string to uppercase.
    lower       – Convert string to lowercase.
Character set conversion.
    native2unicode – Convert bytes to Unicode characters.
    unicode2native – Convert Unicode characters to bytes.
String to number conversion.
    num2str     – Convert numbers to a string.
    int2str     – Convert integer to string.
    mat2str     – Convert a 2-D matrix to a string in MATLAB syntax.
    str2double  – Convert string to double precision value.
    str2num     – Convert string matrix to numeric array.
    sprintf     – Write formatted data to string.
    sscanf      – Read string under format control.
Base number conversion.
    hex2num     – Convert hexadecimal string to double precision number.
    hex2dec     – Convert hexadecimal string to decimal integer.
    dec2hex     – Convert decimal integer to hexadecimal string.
    bin2dec     – Convert binary string to decimal integer.
    dec2bin     – Convert decimal integer to a binary string.
    base2dec    – Convert base B string to decimal integer.
    dec2base    – Convert decimal integer to base B string.
    num2hex     – Convert singles and doubles to IEEE hexadecimal strings.

分类: 软件编程 标签:

matlab常用函数汇总

2008年5月21日 honkin 4 条评论

自学matlab,最近经常用到的函数,汇总一下。

ezplot/ezplot3:画符号函数的图像

plot/plot3:画图函数

plotyy:画双y座标图像的函数

bar/bar3: 画条形图

barh/bar3h:画横向条形图

pie/pie3:画饼图

meshgrid:让两个矩阵编程相同行列的的一个特殊函数×

strcat:字符串拼接函数

strcmp:字符串比较函数

class:查看变量类型的函数

分类: 软件编程 标签: