Need help for mathematics problem.Signals and Systems and Newton method.
1 次查看(过去 30 天)
显示 更早的评论
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.png](https://www.mathworks.com/matlabcentral/answers/uploaded_files/240374/problem%202.png)
![problem 3.png](https://www.mathworks.com/matlabcentral/answers/uploaded_files/240375/problem%203.png)
![problem 2.png](https://www.mathworks.com/matlabcentral/answers/uploaded_files/240374/problem%202.png)
![problem 3.png](https://www.mathworks.com/matlabcentral/answers/uploaded_files/240375/problem%203.png)
4 个评论
回答(1 个)
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
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Symbolic Math Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!