Borrar filtros
Borrar filtros

Programming a bit pattern to the function generator

2 visualizaciones (últimos 30 días)
Dilesh Mutta
Dilesh Mutta el 3 de Jul. de 2019
Respondida: Maadhav Akula el 29 de Jul. de 2019
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.

Respuestas (1)

Maadhav Akula
Maadhav Akula el 29 de Jul. de 2019
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!

Categorías

Más información sobre Data Import from MATLAB en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by