Need help for mathematics problem.Signals and Systems and Newton method.

조회 수: 2 (최근 30일)
Todor Kereziev
Todor Kereziev 2019년 9월 29일
답변: Asvin Kumar 2019년 10월 3일
Hello guys, I'm new here and for the first time I start using MatLab. I have some questions from my teacher that I need to be solve, but because I'm still nooby in this program I don't know how to do it, that's why I write here and ask for some help.problem 2.pngproblem 3.png
  댓글 수: 4
darova
darova 2019년 9월 29일
Maybe you know how this should looks like?
Todor Kereziev
Todor Kereziev 2019년 9월 29일
I just did this, and I don't know if it's true. And after that I don't know what I can do.
fy=1; %frequency in Hz
wy=2*pi*fy; %signal frequency
fs=8; %sampling frequency
t=0:4; %time interval
y=sin(2*pi*t); %signal data set
plot(t,y)

댓글을 달려면 로그인하십시오.

답변 (1개)

Asvin Kumar
Asvin Kumar 2019년 10월 3일
Consider modifying the following code for the question related to sampling:
fy=1; %frequency in Hz
wy=2*pi*fy; %signal frequency
fs=8; %sampling frequency
% fs can maybe take values 2*fy-0.1, 2*fy+0.1, 8*fy
t=0:1/fs:4; %time interval
y=sin(wy*t); %signal data set
plot(t,y)
You can adapt details from the links provided below for the remaining questions.
There is a file for Newton’s Method from the community on File Exchange here: https://www.mathworks.com/matlabcentral/fileexchange/28227-newton-s-method

카테고리

Help CenterFile Exchange에서 Digital Filter Analysis에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by