Hi all,
I don't find an easy way to do what follows.
I've a list of names, with assumptions on them, eg:
assume(a,real);
assume(b,real):
parameters:=[a,b]
then I try do to something like
i:=0;
for what in parameters do
temp:=i;
assign(cat('crlb_', what), temp);
i:=i+1;
end do
because I want to create variables which keep a trace of the parameters they describe in the last part of their name.