I am trying to define some solutions $x_k(t)$ inside a for loop in Maple.
I have tried
but I get an ugly output. I have also tried x[k]:=t-> ... but it makes an even uglier output.
If it wasn't inside a for loop I would have used
x[k] := t -> (...) :
'x[k](t)' = x[k](t) ;
to suppress the output from the assigning and make a nice output in the next line but it seems I cannot suppress only some of the lines inside a for loop?

print('x[k](t)' =outputs $x_k(t) =$ instead of replacing $k$ with $1$ and $2$, resp. – Jamgreen Sep 13 '15 at 08:03print( subs(_K=k,'x[_K](t)') = ...)or build up that lhs howsoever you wish. I see that you''re now using.to keep Vector coefficients from being multiplied through the Vector (as I suggested as Answer to an earlier question of yours). But it's curious that you do not vote up or accept any of my answers to your questions, even when they clearly server to get the result. – acer Sep 14 '15 at 00:54