How I can to realize this function

조회 수: 5 (최근 30일)
Gertruda Radomir
Gertruda Radomir 2020년 11월 7일
댓글: Rena Berman 2021년 5월 7일
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
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.
Rena Berman
Rena Berman 2021년 5월 7일
(Answers Dev) Restored edit

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

답변 (2개)

KSSV
KSSV 2020년 11월 7일

n = 1:20 ;
y = zeros(size(n)) ;
y(n<=5) = n(n<=5).^2 ;
stem(n,y)


Alan Stevens
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 CenterFile Exchange에서 Historical Contests에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by