I want to find a list of discontinuous points from a piecewise function.
Suppose I have a function
f[x_] = Piecewise[
{
{x, -1 <= x < -0.1}
,{-2 x^2, -0.1 <= x < 1}
}
]
I want to get list like {-1,-0.1,1}.
I want to find a list of discontinuous points from a piecewise function.
Suppose I have a function
f[x_] = Piecewise[
{
{x, -1 <= x < -0.1}
,{-2 x^2, -0.1 <= x < 1}
}
]
I want to get list like {-1,-0.1,1}.