Studentenversion des ESY6/A Praktikums "signal_processing".
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

rand_config.h 182B

12345678910111213
  1. #pragma once
  2. #include "task_base_config.h"
  3. #include <inttypes.h>
  4. typedef struct {
  5. task_base_config base;
  6. float seed;
  7. float abs_min;
  8. float abs_max;
  9. } rand_config;