How I can to realize this function
5 ビュー (過去 30 日間)
古いコメントを表示
Hello to everyone!
I need help in solving this function, please!
I tried to solve it with different methods, but nothing worked.
here is my last solution which doesn't work either.
3 件のコメント
Rik
2020 年 11 月 7 日
Unfortunately for Vladislav Tepper, Google keeps a cache. So If you want to cheat, you will have to be a bit more cunning. Or not post on a public forum.
How I can to realize this function
Hello to everyone!
I need help in solving this function, please!

I tried to solve it with different methods, but nothing worked.
here is my last solution which doesn't work either.

回答 (2 件)
Alan Stevens
2020 年 11 月 7 日
Use indexing:
Parabula = @(n) n.^2;
n = -2:6;
y = Parabula(n);
y(n<1 | n>5) = 0;
stem(n,y)
axis([-10 10 0 30])
参考
カテゴリ
Help Center および File Exchange で Spline Postprocessing についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!