Question: Create Piecewise from Coefficient Matrix

So I have a matrix that contains coefficients for polynomial functions and bounds for where each polynomial is defined. How do I make a piecewise out of this automatically? I could enter them by hand but the number of functions can be as high as 100. FOr example, The first row of the coefficient matrix may contain the numbers 1,2,3,4,10,11 where 1,2,3 4 would be the coefficients of the first polynomial and it would be defined from 10 to 11. Thus, if I were to enter it by hand it would look something like this: f:=x->piecwise(x>10 and x
Please Wait...