Hi,
given that I defined 2 variables
n=10;
m=20;
I would like to have a Plot with the Label saying
"solution with 10 x 20 grid points" .
What I tried so far is using Text[ ], e.g. PlotLabel -> Text[n "grid points"] produce the caption
"10 grid points" .
However, PlotLabel -> Text[ n x m "grid points"] produces the caption
"200 grid points" ,
which is not what I am aiming for.
Moreover, Mathematica always places the numbers in front of the text, e.g. PlotLabel -> Text["solution with" n "grid points"] results in the caption
"10 solution with grid points" ,
which is again not what I want.
Does anyone know how to do this properly?