菜单
  
    Matlab取整函数有: fix, floor, ceil, round.取整函数在编程时有很大用处。
    一、取整函数
     1.向零取整(截尾取整)

    fix-向零取整(Round towards zero);

     >> fix(3.6)   

     ans =      3
    2.向负无穷取整(不超过x 的最大整数-高斯取整)

    floor-向负无穷取整(Round towards minus infinity);

    >> floor(-3.6)   

    ans =     -4
    3.向正无穷取整(大于x 的最小整数)

    ceil-向正无穷取整(Round towards plus infinity);

    >> ceil(-3.6)    

    ans =     -3
    4.向最近整数取整,四舍五入(四舍五入取整)

    round-向最近整数取整,四舍五入(Round towards nearest integer);

    >> round(3.5)

    ans =      4   
    二、在小数点后某一位四舍五入,即保留几位小数,也经常用到。
    1.数值型 roundn—任意位位置四舍五入

    >>a=123.4567890;

    >>a=roundn(a,-4)

    a =   123.4568

    其中roundn函数功能如下:    

    y = ROUNDN(x) rounds the input data x to the nearest hundredth.   %不指定n,精确到百分位 y = ROUNDN(x,n) rounds the input data x at the specified power    %精确到小数点后指定位数n  

    2.符号型

    digits(4)

    vpa(....)

    必须说明:vpa命令不能识别整数与小数,只算总位数,因此对它来说小数整数无论哪个都占一位,例如对9.3154保留两位小数时就得写成:

    >>a=9.3154;

    >>digits(3)

    >>b=vpa(a)

    b=      9.32

    其中b为符号型变量;
    3.字符型

    >>a=12.34567;

    >>b = sprintf('%8.2f',a)

    b =    12.35 其中b为字符型变量。

     
    matlab文本输出

    两个函数:disp

              fprintf
    1、函数disp只带一个变量,他可以是自负矩阵或数值矩阵,要输出简单的文字信息,只需要用单引号将信息括起来:

    >>disp(‘my favorite color is red’);

    或者

    >>yourname=input(‘enter your name’,’s’);

    >>disp([‘your name is’,youname]);

     

    例如

    >> yourname = input('enter your name ','s');

    enter your name panrq

    >> disp(['your name is ',yourname]);

    your name is panrq

     

    选择带数值变量值的文本信息时,需要用函数num2str将数值变量的类型转换字符型

    >> x=98;

    >> outstring = ['x = ',num2str(x)];

    >> disp(outstring);

    x = 98

    >>  disp(['x = ',num2str(x)]);

    x = 98

     

    disp函数只能带一个变量,表格中的各列需奥组合成一个矩阵,如下面的程序所示。

    >> x=0:pi/5:pi;y=sin(x);

    >> disp([x' y']);

             0         0

        0.6283    0.5878

        1.2566    0.9511

        1.8850    0.9511

        2.5133    0.5878
  1. 上一篇:参观监狱心得体会600字
  2. 下一篇:9G游戏黄加阳的不平凡创业路
  1. oracle四舍五入保留两位小数

  2. plot3()在matlab中是什么意思plot3

  3. matlab曲面拟合函数命令例子

  4. 弦截法的例题及MATLAB程序

  5. Newton法的例题及MATLAB程序

  6. 不动点迭代法的例题及MATLAB程序

  7. 二分法的例题及MATLAB程序

  8. 从何红舟《桥上的风景》中感受油画构成美

  9. 玫瑰精油特征香气成分研究

  10. 货币国际化国内外研究现状

  11. 多级反馈队列调度算法的研究+源代码

  12. 运动员广告形象塑造文献综述和参考文献

  13. 街头游园设计

  14. Toeplitz定理及其应用+文献综述

  15. 进出口贸易与经济增长文献综述和参考文献

  16. 身体自尊量表(PSPP)

  17. 甲硫醇钠生产工艺设计任务书

  

About

优尔论文网手机版...

主页:http://www.youerw.com

关闭返回