matlab 将数字转换成字符串,可不可以按小数点后的位数来保留?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了matlab 将数字转换成字符串,可不可以按小数点后的位数来保留?相关的知识,希望对你有一定的参考价值。

你问的这个问题很有意思啊,matlab要保留任意位数,是一个比较值得研究的东西。
默认format也就是format short是保留4位小数,format long 是保留14位,如果要保留两位或者六位,就存在如何设置的问题。本人做了点总结,给出以下方法

方法1:digits+vpa
format long
a = input('please give a number which will be changed:');
n = input('how many decimal digits will you keep: ');
num = floor(a);
str = num2str(num);
len = length(str);
err = a-num;
digits(n+len); % 此处为需要的小数位+整数位数
need_num = num+vpa(err,n+len); %%%% 这里得到的是符号型
need_str = num2str(double(need_num)) %%%%% 再次转换获得字符型

方法2:round 函数法
format long
a = input('please give a number which will be changed:');
n = input('how many decimal digits will you keep: ');
b = a*10^n;
aa = round(b);
need_num = aa/10^n; %%%%% 先化成整数,再转成小数
need_str = num2str(need_num)

方法3:直接转成字符串再截取
format long
a = input('please give a number which will be changed:');
n = input('how many decimal digits will you keep: ');
num = floor(a);
str = num2str(num);
len = length(str);
str1 = num2str(a);
need_str = str1(1:(len+n+1)) %%%取需要的长度,这里需要加上整数长和小数点1位

方法4:fprintf方法
a = input('please give a number which will be changed:');
%n = input('how many decimal digits will you keep: ');
fprintf('a = %3.2f',a) %%%%3.2f中.2就是小数位数
参考技术A 如果不四舍五入,可以用正则表达式直接提取。
比如,要提取小数点后3位:
string='1.123456 2.123456';
s=regexp(string,'\d+.\d3','match');
output:
s='1.1234','2.1234';
最后只要用for语句做str2num(si)就行了。

参考资料:help regexp

参考技术B 最好的办法:str = num2str(A, format)
例如a=0.0023456想变为b=2.34X10^-3,可用b=num2str(a,'%.2f');
详细请查看:num2str函数

sql语句中怎样将字符类型转换成数字类型

先检查金额列的数据是否都符合小数规范,转为数字格式只有是数字的字符串才能转,如000012转为12,.55转为0.55,若是个英文符号等字符转了就报无效数字类型的错。

转换的方式很多,但是字符串转换成数字的前提是字符串中只包含了数字或者小数点。 

可使用convert函数,cast 和convert可以显式转换数据类型,在某些情况下SQL会根据实际情况自动转换!不过建议显式的转换一下,这样的话可读性高一点! 

因为字符串不一定能转换成数字,所以用上面的,加上错误处理比较。

例子:

declare @a varchar(10)

set @a='as23'

select case when isnumeric(@a)=1 then cast(@a as int) else null end

set @a='23'

select case when isnumeric(@a)=1 then cast(@a as int) else null end

结果:

declare @a varchar(10)

set @a='as23'

select case when isnumeric(@a)=1 then cast(@a as int) else null end

set @a='23'

select case when isnumeric(@a)=1 then cast(@a as int) else null end

参考技术A to_number()转为数字格式
to_char()转为字符串格式
to_date()转为时间格式
..........
转为数字格式只有是数字的字符串才能转,这句话可能有点歧义, 通常字符前面带0或点的数字字符串转数字用到,如000012转为12,.55转为0.55,若是个英文符号等字符转了就报无效数字类型的错,如果遇到两种数据类型不一致情况数据库默认是会转的,如关联 ta.a=ba.b ta.a是字符串,ba.b是数字,或者将ta.a插入到ba.b数据库就会自动转
参考技术B cast('111' as int) 不过首先你得判断是不是 数字 isnumber('111')=1 是数字 =0 不是数字 参考技术C int i = new Integer("2");

以上是关于matlab 将数字转换成字符串,可不可以按小数点后的位数来保留?的主要内容,如果未能解决你的问题,请参考以下文章

MATLAB如何将数字数组转换成字符串?

如何在matlab中转换为字符串

javascript 如何将字符串转换成数字,小数!

用matlab将日期格式转换成数值格式

sql语句中怎样将字符类型转换成数字类型

C语言中字符串和整数小数相互转换的函数以及头文件