Programming a bit pattern to the function generator

3 次查看(过去 30 天)
I am trying to generate a random bit pattern of 60bits at 86kHz to generate it on a function generator. Could anyone guide please? I am justt looking to create an excel file of my wave.

回答(1 个)

Maadhav Akula
Maadhav Akula 2019-7-29
I understand that you want to generate a random 60-bit pattern at a frequency of 86kHz, the following code gets you the required pattern for 1 second :-
clear all; %Clears the workspace
f = 86000; %Defining Frequency = 86khz
t0 = 1; %Defining t0 = 1 second
t = 0:1/f:t0; %Defining a time vector for t0 seconds of frequency 86kHz
N = length(t); %Length of the time vector
random_bits = randi([0,1], N,60); %Required random bit pattern
you can change t0 values according to your requirements.
You can export the variables from workspace in many ways, you can directly copy the data by opening variable editor and paste it in your excel sheet or you can refer to the link below on how to export it programmatically : -
Hope it helps!

类别

Help CenterFile Exchange 中查找有关 Data Import from MATLAB 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by