代码搜索:输出数据
找到约 10,000 项符合「输出数据」的源代码
代码结果 10,000
www.eeworm.com/read/169026/9885368
asm define.asm
.list
.DATA
org 0h ;Bank 0 data section start from RAM address 0x000
AccBuf ds 1 ;Accumulater buffer
PflagBuf ds 1 ;PFLAG buffer
Keyinbuf ds 1 ;按键
Keychkbuf ds 1
Keycvtbuf ds
www.eeworm.com/read/169026/9885375
lst define.lst
1 000000 .list
2 000000 .DATA
3 000000
4 000000 org 0h ;Bank 0 data section start from RAM address 0x000
5 0000 D
www.eeworm.com/read/363482/9949551
c ex4-4.c
#include
#include
#define DELAYTIME 65000 //定义延迟时间常数
unsigned int temp1; //定义用于控制延时的变量
//定义bit 类型的变量
sbit p10=P1^0;
sbit p11=P1^1;
sbit p12=P1^2;
sbit p13=P1^3;
sbit
www.eeworm.com/read/165898/10047324
m sumarize8_5_5.m
for i = 1:5 %用for循环生成A矩阵
for j = 1:5
A(i,j) = 1/(i-j+1/2);
end
end
digits(30) %指定输出精度
www.eeworm.com/read/360651/10082930
m computing_zn.m
function o=computing_zn(c,h)
%计算z(n)=c(n)*h(n),h(n)为更新过的
%输入 c--码字c(n),h-冲击响应h(n)
%输出o---z(n)
z=conv(c,h);
z=z(1:40);
o=z;
www.eeworm.com/read/164050/10134184
m exm06731_2.m
%exm06731_2.m
%(1)调用格式一
FH1=maple('hessian(x*y*z,[x,y,z]);')
%(2)调用格式二
FH2=maple('hessian','x*y*z','[x,y,z]')
%(3)把以上输出变成"符号"类
FH=sym(FH2)
www.eeworm.com/read/359245/10159647
m latcfilt_m.m
function [y]=latcfiltm(K,x);
%y=输出序列
%K=格型结构滤波器的系数矩阵
%x=输入序列
Nx=length(x)-1;
M=length(K)-1;K=K(2:M+1);
fg=[x;[0 x(1:Nx)]];
for m=1:M
fg=[1,K(m);K(m),1]*fg;
fg(2,:)=[0 fg(2,1:Nx)];
end
www.eeworm.com/read/359177/10162297
txt ch2example15data.txt
-----------------(1)仿真开始时刻初始化
flag = 0 调用初始化部分
t = []
x = []
u = []
-----------------(2)进入仿真循环,计算0时刻输出
flag = 3 调用输出方程的计算
t = 0
-----------------(
www.eeworm.com/read/358841/10178054
txt ans0404.txt
integer a,b
real ra,rb
a=2
b=3
ra=2.0
rb=3.0
write(*,*) b/a ! 输出1, 因为使用整数计算, 小数部分会无条件舍去
write(*,*) rb/ra ! 输出1.5
www.eeworm.com/read/357587/10205288
m mybp_old.m
clear
clc
close all
%数据输入
% input=[0.2576622 0.5001936 0.2277879 0.4703193 0.1979135 0.4404449 0.6829764 0.9255078 0.1680392 0.4105706 0.653102 0.8956335 0.1381649 0.3806963 0.6232277 0.8657591 0.