フィルターのクリア

Info

この質問は閉じられています。 編集または回答するには再度開いてください。

How do I create a toeplitz matrix from a signal and with that create a polynomial and get its constants

1 回表示 (過去 30 日間)
Miguel Amor Rodriguez Avelino
Miguel Amor Rodriguez Avelino 2023 年 3 月 10 日
閉鎖済み: John D'Errico 2023 年 3 月 10 日
clear variables; % Limpia variables
close all; % Cierra ventana
clc; % Limpia
t = 0:0.01:1; % Vector de tiempo
Fs = 180; % Frecuencia de muestreo
fs = 1/Fs; % Periodo de muestreo
L = 100; % Muestras
t1 = (0:L-1).*fs; % Vector de tiempo
A = 2; % Amplitud
pha = 0; % Fase
T = 1; % Periodo
f = 1/T; % Frecuencia
x = A*sin(2*pi*f*t+pha); % Señal senoidal
Hello everyone, could someone help me how to create a toeplitz matrix from this sinusoidal signal. I know there is a function already, but what happens I am programming it without using the function that Matlab has

回答 (0 件)

この質問は閉じられています。

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by