HOW CAN I DEAL WITH NEGATIVE VALUS I AM RECEIVING AFTER PERFORMING DECOMPOSITION

3 次查看(过去 30 天)
I have performed periodic plus smooth decomposition on u.. Now i am getting p and s as periodic , smooth component. But they contain negative values which is creating problem in further calculation....what should i do now?

回答(1 个)

Matt J
Matt J 2022-8-14
Threshold them?
x=[-2 -1 0 1 2 3]
x = 1×6
-2 -1 0 1 2 3
xpos=max(x,0)
xpos = 1×6
0 0 0 1 2 3

类别

Help CenterFile Exchange 中查找有关 Matrix Decomposition 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by