代码搜索:repeat
找到约 6,690 项符合「repeat」的源代码
代码结果 6,690
www.eeworm.com/read/483608/6599582
v mult_repeat.v
module mult_repeat(outcome,a,b);
parameter size=8;
input[size:1] a,b;
output[2*size:1] outcome;
reg[2*size:1] temp_a,outcome;
reg[size:1] temp_b;
always @(a or b)
begin
outcome=0;
temp_a=a;
www.eeworm.com/read/481648/6636856
v mult_repeat.v
module mult_repeat(outcome,a,b);
parameter size=8;
input[size:1] a,b;
output[2*size:1] outcome;
reg[2*size:1] temp_a,outcome;
reg[size:1] temp_b;
always @(a or b)
begin
outcome=0;
temp_a=a;
www.eeworm.com/read/479927/6683688
v mult_repeat.v
module mult_repeat(outcome,a,b);
parameter size=8;
input[size:1] a,b;
output[2*size:1] outcome;
reg[2*size:1] temp_a,outcome;
reg[size:1] temp_b;
always @(a or b)
begin
outcome=0;
temp_a=a;
www.eeworm.com/read/402283/11539694
m repeat4.m
% repeat4.m
% repeated value creation and counting
% inverse operation
%y = [3 3 0 0 0 5 6 6]; % data to examine
x = y(1); % beginning data
n = 1; % beginning cou
www.eeworm.com/read/402283/11539744
m repeat1.m
% repeat1.m
% repeated value creation and counting
%x = [3 2 0 5 6]; % data to repeat
%n = [2 0 3 1 2]; % repeat counts
y = [];
for i=1:length(x)
y = [y repmat(x(i),1,n(i))];
end
www.eeworm.com/read/402283/11539756
m repeat5.m
% repeat5.m
% repeated value creation and counting
% inverse operation
% y = [3 3 0 0 0 5 6 6]; % data to examine
x = zeros(size(y)); % preallocate results
n = zeros(size(y));
x(1) = y(
www.eeworm.com/read/402283/11539817
m repeat3.m
% repeat3.m
% repeated value creation and counting
%x = [3 2 0 5 6]; % data to repeat
%n = [2 0 3 1 2]; % repeat counts
nz = n==0; % locations of zero elements
n(nz) = [];
www.eeworm.com/read/402283/11539825
m repeat6.m
% repeat6.m
% repeated value creation and counting
% inverse operation
%y=[3 3 0 0 0 5 6 6]; % data to examine
tmp = [1 diff(y)]~=0;
x = y(tmp);
n = diff(find(cat(2,tmp,1)));
www.eeworm.com/read/402283/11539846
m repeat2.m
% repeat2.m
% repeated value creation and counting
%x = [3 2 0 5 6]; % data to repeat
%n = [2 0 3 1 2]; % repeat counts
nz = n==0; % locations of zero elements
n(nz) = [];
www.eeworm.com/read/401965/11545327
pl0 repeat.pl0
PROGRAM EX01;
VAR A,B;
BEGIN
A:=1;
B:=10;
REPEAT
A:=A+1;
B:=B-1;
DOWHILE A