John Edwards <[EMAIL PROTECTED]> wrote:
>Can you explain what your trying to achieve??
>
>You want an array called @data which consists of all the elements from
>@dataumi2? Where does the second array with empty element values come from,
>why is it needed?

ok, to simplify let's suppose that

@datumi2 = (1, 2, 3);

#so final result should look like this:
@data[0] = ("", "", "");
#and
@data[1] = (1, 2, 3);

I want to make @data[0] on the fly without "for" structure and it should
have the same number of elements as @datumi2.

This may look somehow silly but I'm working with GD::Graph module and want
to avoid X values being drawn, so there is a need for array where all
elements are "".


-- 
Matija

--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to