代码搜索:repeat
找到约 6,690 项符合「repeat」的源代码
代码结果 6,690
www.eeworm.com/read/247568/12641109
png repeat_all.png
www.eeworm.com/read/247568/12641132
png repeat_all.png
www.eeworm.com/read/247568/12641160
png repeat_all.png
www.eeworm.com/read/247568/12641189
png repeat_all.png
www.eeworm.com/read/146449/12647723
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/300713/13897208
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/132791/14072845
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/203569/15355589
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/202224/15389096
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/202224/15389146
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