Topic: If function

how to plot a graph with 'if' function? example..

f (x) = x^2   if x >= 2

Re: If function

Try f(x)=if(x>=2, x^2, undef)

Re: If function

thx.. wink