Zero pad using piecewise.

조회 수: 6 (최근 30일)
Vasaf
Vasaf 2024년 10월 31일
답변: Voss 2024년 10월 31일
Hello,
I need help zero padding a function.
This the code for the function:
Vr = (eps*((r0./r).^12));
Va = (-eps*(2*(r0./r).^6));
V = Vr+Va
I need to zero pad it so that all values of V that are above 0 are set to 0.
So in written forms I need this:
{0, V>0}
V=
{V, V<0}
I tried this so far:
V = piecewise(Vr+Va>0,0, Vr+Va<0,Vr+Va);
but I keep getting this error:
Incorrect number or types of inputs or outputs for function piecewise.
Error in Project_2 (line 22)
V = piecewise(Vr+Va>0,0, Vr+Va<0,Vr+Va);
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

채택된 답변

Voss
Voss 2024년 10월 31일
"I need ... that all values of V that are above 0 are set to 0."
V(V > 0) = 0;
or
V = min(V,0);

추가 답변 (1개)

Walter Roberson
Walter Roberson 2024년 10월 31일
piecewise() requires that the first input be a symbolic expression.
Your Vr+Va is likely numeric.

카테고리

Help CenterFile Exchange에서 Error Detection and Correction에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by