代码搜索:数据转化

找到约 10,000 项符合「数据转化」的源代码

代码结果 10,000
www.eeworm.com/read/140308/13089069

txt imagetool.txt

提供的 vc 代码完成以下功能: 1. 将真彩位图转化成各色或黑白位图,进行二值化(支持多种抖动方法)处理后的位图,效果和速度极佳。 2. 将真彩或黑白位图进行 90度 , 180 度 ,270 度 高速度旋转。
www.eeworm.com/read/194957/8182660

m 例2-43.m

>> a=[2,-4,7]; %求-2,4,-7为根的多项式 >> p=poly(a) >> A=[4,6,3;5,4,9;8,3,2]; %求方阵A的特征多项式 >> poly(A) >> A=[4,6,3;5,4,9;8,3,2]; %将多项式转化为字符串 >> poly(A); >> pstr=poly
www.eeworm.com/read/167697/9955519

txt 将16进制转化为std_logic.txt

VHDL: Converting a Hexadecimal Value to a Standard Logic Vector This example shows how to convert a hexadecimal value to a std_logic_vector. It is shown in both VHDL '87 (IEEE Std 1076-1987) and
www.eeworm.com/read/417397/10991773

txt 将16进制转化为std_logic.txt

VHDL: Converting a Hexadecimal Value to a Standard Logic Vector This example shows how to convert a hexadecimal value to a std_logic_vector. It is shown in both VHDL '87 (IEEE Std 1076-1987) and
www.eeworm.com/read/198238/7946416

txt 将16进制转化为std_logic.txt

VHDL: Converting a Hexadecimal Value to a Standard Logic Vector This example shows how to convert a hexadecimal value to a std_logic_vector. It is shown in both VHDL '87 (IEEE Std 1076-1987) and
www.eeworm.com/read/198238/7946491

txt 将16进制转化为std_logic.txt

VHDL: Converting a Hexadecimal Value to a Standard Logic Vector This example shows how to convert a hexadecimal value to a std_logic_vector. It is shown in both VHDL '87 (IEEE Std 1076-1987) and
www.eeworm.com/read/142631/12935112

mht 一个文本格式转化程序.mht

From: Subject: =?gb2312?B?tbG1scLbzLMgLSA6OrzGy+O7+ry8yvU6OiAtILHgs8zM7LXYIC0g0ru49s7E?= =?gb2312?B?sb648cq916q7r7PM0PIgLSBwb3dlcmVkIGJ5IHh0aGFua3M=?= Date: Sa
www.eeworm.com/read/313158/13595010

txt 十进制转化为八进制.txt

#include #include int fin(int n){ int m=0,i=0,a[10]; if(n==0){ m=0; return m; } while(n!=0){ a[i]=n%8; n=n/8; i++; } i--; m=a[