How can i display this sequence in a graph?

2 views (last 30 days)
x_n = (n.^2-1)/n.^2
Using Matlab.

Accepted Answer

David Hill
David Hill on 17 Apr 2020
n=.05:.01:.3;
x_n=(n.^2-1)./(n.^2);
plot(n,x_n);

More Answers (0)

Categories

Find more on Startup and Shutdown in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!