MATLAB数据精度处理

更新时间:2023-07-30 13:28:38 阅读: 评论:0

MATLAB数据精度处理
a=1.23456789
b=vpa(a,7)
b = 1.234568
vpa(a,12)
ans = 1.23456789000
format:设置输出格式 对浮点性变量,缺省为format short. format并不影响matlab如何计算和存储变量的值。对浮点型变量的计算,即单精度或双精度,按合适的浮点精度进⾏,⽽不论变量是如何显⽰的。对整型变量采⽤整型数据。整型变量总是根据不同的类(class)以合适的数据位显⽰,例如,3位数字显⽰显⽰int8范围 -128:127。format short, long不影响整型变量的显⽰。 format long 显⽰15位双精度,7为单精度(scaled fixed point) format short 显⽰5位(scaled fixed point format with 5 digits) format short eng ⾄少5位加3位指数 format long eng 16位加⾄少3位指数 format hex ⼗六进制 format bank 2个⼗进制位 format + 正、负或零 format rat 有理数近似 format short 缺省显⽰ format long g 对双精度,显⽰15位定点或浮点格式,对单精度,显⽰7位定点或浮点格式。 format short g 5位定点或浮点
格式 format short e 5位浮点格式 format long e 双精度为15位浮点格式,单精度为7为浮点格式 Matlab⾥⾯显⽰的数字默认情况下是以short类型进⾏显⽰和存储的。但是有时候我们需要对它的显⽰格式(精度)进⾏更改,以适合我们的需求。更改⽅法如下:
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
led星星灯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花葬
3.1416 0.0000
Format命令
控制显⽰模式,直到下⼀个format出现前,这条format命令⼀直有效。
x=1.23456789;
format short;disp(pi);
3.1416
format long;disp(pi);
3.141592653589793
format short e;disp(pi);
怎么调整生物钟3.1416e+000
format +;disp(pi);
淋浴房十大品牌
+
format bank;disp(pi);
3.14
2、函数fprintf
fprintf(format);
fprintf(format,variables);
fprintf(fid,format,variables);
例如:
fprintf(‘i am concreten’);
i am concrete
a=3;b=’s’;
fprintf(‘this is a %d and %s n’,a,b);
this is a 3 and s
转载请注明出处:

本文发布于:2023-07-30 13:28:38,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/fan/82/1123761.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

标签:变量   浮点   取整   函数   格式   数值   例如   模式
相关文章
留言与评论(共有 0 条评论)
   
验证码:
推荐文章
排行榜
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图