Consider the following list:
list[x_] = {x^2, x, x^3, Sqrt[x]};
I tried to plot this list:
Plot[list[x],{x,0,1}]
However, it shows the curves with the same color. Is it possible to make it work properly?
Consider the following list:
list[x_] = {x^2, x, x^3, Sqrt[x]};
I tried to plot this list:
Plot[list[x],{x,0,1}]
However, it shows the curves with the same color. Is it possible to make it work properly?
Evaluate[list[x]]. – b.gates.you.know.what May 04 '23 at 09:13