[求助] 有没有人做过高斯白噪声叠加一个正弦信号的仿真工程,这是细胞自动化高斯白噪声

zzszhang123456   2022-11-15 21:10 楼主


module CellularAutomata#(
    parameter INIT_VEC = 32'b0100_1000_0001_0010_0100_1000_0001_0010,
    parameter RULE_VEC = 32'b0000_1100_0100_0111_0000_1100_0000_0110,
    N = 32
)(
    input clk_i, reset,       //鍏ㄥ眬淇″彿
    output [N-1:0] uni_out
    );

    reg [N-1:0] uni_r;
    wire [N-1:0] uni_next;
    assign uni_out = uni_r;

    always @(posedge clk_i or negedge reset ) begin
        if(reset)begin
          uni_r <= INIT_VEC;
        end
        else begin
          uni_r <= uni_next;
        end
    end
    generate
        genvar i;
        for(i=0; i<N; i=i+1) begin
            if (i==0) begin
                SingleCell#(.init(INIT_VEC[i]), .head(1'b1), .tail(1'b0))  
                inst_SingleCell_head (    
                    .clk_i             (clk_i),  
                    .ctrl              (RULE_VEC[i]),
                    .left              (1'b0),
                    .right             (uni_r[1]),
                    .self              (uni_r[i]),
                    .out               (uni_next[i])
                );
            end
            else if (i==N-1) begin
                SingleCell#(.init(INIT_VEC[i]), .head(1'b0), .tail(1'b1))  
                inst_SingleCell_tail (    
                    .clk_i             (clk_i),  
                    .ctrl              (RULE_VEC[i]),
                    .left              (uni_r[N-2]),
                    .right             (1'b0),
                    .self              (uni_r[i]),
                    .out               (uni_next[i])
                );
            end
            else begin
                SingleCell#(.init(INIT_VEC[i]), .head(1'b0), .tail(1'b0))  
                inst_SingleCell (    
                    .clk_i             (clk_i),  
                    .ctrl              (RULE_VEC[i]),
                    .left              (uni_r[i-1]),
                    .right             (uni_r[i+1]),
                    .self              (uni_r[i]),
                    .out               (uni_next[i])
                );
            end
        end
    endgenerate


endmodule
 

回复评论 (1)

楼主的需求是什么呀?

玩板看这里: https://bbs.eeworld.com.cn/elecplay.html EEWorld测评频道众多好板等你来玩,还可以来频道许愿树许愿说说你想要玩的板子,我们都在努力为大家实现!
点赞  2022-11-16 23:52
电子工程世界版权所有 京B2-20211791 京ICP备10001474号-1 京公网安备 11010802033920号
    写回复