RE: [U2] Command that is the opposite of MATPARSE.

2006-10-04 Thread Hennessey, Mark F.


It's ridiculous stuff like this that gets us in trouble with the outside 
world.


Yeah, but they are a bunch of outsiders...  and they smell too  :)
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


Re: [U2] Command that is the opposite of MATPARSE.

2006-10-03 Thread Mark Johnson
Does that eliminate MATBUILD?
- Original Message -
From: "Dave Walker" <[EMAIL PROTECTED]>
To: 
Sent: Tuesday, October 03, 2006 8:39 AM
Subject: RE: [U2] Command that is the opposite of MATPARSE.


> They work in Unidata...
>
> --
> Dave Walker
>
> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] Behalf Of Bill Haskett
> Sent: Monday, October 02, 2006 8:35 PM
> To: u2-users@listserver.u2ug.org
> Subject: RE: [U2] Command that is the opposite of MATPARSE.
>
>
> Mark:
>
> I don't believe this works in the U2 products.  All those little niceties
of
> D3 are not considered essential in U2.  :-)
>
> Bill
>
>
> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] On Behalf Of Mark Johnson
> Sent: Monday, October 02, 2006 4:14 PM
> To: u2-users@listserver.u2ug.org
> Subject: Re: [U2] Command that is the opposite of MATPARSE.
>
> I don't know if this would work on U2 but as I was trying to remember this
> for D3, I simply equated them as such:
>
> DIM A(100)
> MATREAD A FROM FILE, ID ELSE STOP
> B=A
> PRINT A(49), B<49>
>
> My .001 cents.
> Mark Johnson
>
> ----- Original Message -----
> From: "Kevin King" <[EMAIL PROTECTED]>
> To: 
> Sent: Monday, October 02, 2006 6:53 PM
> Subject: RE: [U2] Command that is the opposite of MATPARSE.
>
> > >Just curious - Does anyone know if there is a command/function
> > >that will do just the opposite (of MATPARSE)?
> >
> > MATBUILD
> >
> > -Kevin
> > [EMAIL PROTECTED]
> > http://www.PrecisOnline.com
> ---
> u2-users mailing list
> u2-users@listserver.u2ug.org
> To unsubscribe please visit http://listserver.u2ug.org/
> ---
> u2-users mailing list
> u2-users@listserver.u2ug.org
> To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Command that is the opposite of MATPARSE.

2006-10-03 Thread Tom Dodds
Your right I missed the point. You can't do that in UV that I know of.  They
could do that in UltPls and it gave us fits during a conversion from UltPls
to UV.

Thanks

Tom Dodds
[EMAIL PROTECTED]
708-234-9608 Office
630-235-2975 Cell

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Bill Haskett
Sent: Tuesday, October 03, 2006 3:55 PM
To: u2-users@listserver.u2ug.org
Subject: RE: [U2] Command that is the opposite of MATPARSE.

Tom:

I think the point Mark was making is you can do:

DIM A(5)
A(1) = "A"
A(2) = "B"
A(3) = "C"
A(4) = "D"
A(5) = "E"
B = A

...and now B is a dynamic array while A is a dimensioned array. You can
assign one from another without ever using MATPARSE or MATBUILD.

Bill


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Tom Dodds
Sent: Tuesday, October 03, 2006 12:21 PM
To: u2-users@listserver.u2ug.org
Subject: RE: [U2] Command that is the opposite of MATPARSE.

You have to DO MAT B = MAT A after you have dim'ed B, but then the CRT B
won't work because it is an array.

Tom Dodds
[EMAIL PROTECTED]
708-234-9608 Office
630-235-2975 Cell

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Bill Haskett
Sent: Tuesday, October 03, 2006 1:25 PM
To: u2-users@listserver.u2ug.org
Subject: RE: [U2] Command that is the opposite of MATPARSE.

Dave:

Really?  I tried the following on UniData v7.1:

3 Demo (0)-> BPTEST DIM A(5) ; A(1) = "A" ; A(2) = "B" ; A(3) = "C" ; A(4) =
"D" ; A(5) = "E" ; B = A ; CRT B ; END

Compiling Unibasic: SAVEDLISTS\BpTest_407195971 in mode 'p'.
redefined variable A near line 7
compilation failed
In E:\DataTrust\DTA\BP\BP\_BPTEST at line 101 can not find object/catalog
file: 'SAVEDLISTS\_BpTest_407195971'.


...but on D3 I get:

31 Demo (0)-> BPTEST DIM A(5) ; A(1) = "A" ; A(2) = "B" ; A(3) = "C" ; A(4)
= "D"
 ; A(5) = "E" ; B = A ; CRT B ; END
BpTest*407628781
.
[241] Successful compile!   1 frame(s) used.
A^B^C^D^E


Am I missing something here?  Thanks,

Bill


-----Original Message-----
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Dave Walker
Sent: Tuesday, October 03, 2006 5:39 AM
To: 'u2-users@listserver.u2ug.org'
Subject: RE: [U2] Command that is the opposite of MATPARSE.

They work in Unidata...

--
Dave Walker

-----Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Bill Haskett
Sent: Monday, October 02, 2006 8:35 PM
To: u2-users@listserver.u2ug.org
Subject: RE: [U2] Command that is the opposite of MATPARSE.


Mark:

I don't believe this works in the U2 products.  All those little niceties of
D3 are not considered essential in U2.  :-)

Bill


-----Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Mark Johnson
Sent: Monday, October 02, 2006 4:14 PM
To: u2-users@listserver.u2ug.org
Subject: Re: [U2] Command that is the opposite of MATPARSE.

I don't know if this would work on U2 but as I was trying to remember this
for D3, I simply equated them as such:

DIM A(100)
MATREAD A FROM FILE, ID ELSE STOP
B=A
PRINT A(49), B<49>

My .001 cents.
Mark Johnson

- Original Message -
From: "Kevin King" <[EMAIL PROTECTED]>
To: 
Sent: Monday, October 02, 2006 6:53 PM
Subject: RE: [U2] Command that is the opposite of MATPARSE.

> >Just curious - Does anyone know if there is a command/function
> >that will do just the opposite (of MATPARSE)?
>
> MATBUILD
>
> -Kevin
> [EMAIL PROTECTED]
> http://www.PrecisOnline.com
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


Re: [U2] Command that is the opposite of MATPARSE.

2006-10-03 Thread jpb
It's ridiculous stuff like this that gets us in trouble with the outside 
world.
- Original Message - 
From: "Bill Haskett" <[EMAIL PROTECTED]>

To: 
Sent: Tuesday, October 03, 2006 3:55 PM
Subject: RE: [U2] Command that is the opposite of MATPARSE.



Tom:

I think the point Mark was making is you can do:

DIM A(5)
A(1) = "A"
A(2) = "B"
A(3) = "C"
A(4) = "D"
A(5) = "E"
B = A

...and now B is a dynamic array while A is a dimensioned array. You can
assign one from another without ever using MATPARSE or MATBUILD.

Bill


 
---

u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Command that is the opposite of MATPARSE.

2006-10-03 Thread Bill Haskett
Tom:

I think the point Mark was making is you can do:

DIM A(5)
A(1) = "A"
A(2) = "B"
A(3) = "C"
A(4) = "D"
A(5) = "E"
B = A

...and now B is a dynamic array while A is a dimensioned array. You can
assign one from another without ever using MATPARSE or MATBUILD.

Bill


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Tom Dodds
Sent: Tuesday, October 03, 2006 12:21 PM
To: u2-users@listserver.u2ug.org
Subject: RE: [U2] Command that is the opposite of MATPARSE.

You have to DO MAT B = MAT A after you have dim'ed B, but then the CRT B
won't work because it is an array.

Tom Dodds
[EMAIL PROTECTED]
708-234-9608 Office
630-235-2975 Cell

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Bill Haskett
Sent: Tuesday, October 03, 2006 1:25 PM
To: u2-users@listserver.u2ug.org
Subject: RE: [U2] Command that is the opposite of MATPARSE.

Dave:

Really?  I tried the following on UniData v7.1:

3 Demo (0)-> BPTEST DIM A(5) ; A(1) = "A" ; A(2) = "B" ; A(3) = "C" ; A(4) =
"D" ; A(5) = "E" ; B = A ; CRT B ; END

Compiling Unibasic: SAVEDLISTS\BpTest_407195971 in mode 'p'.
redefined variable A near line 7
compilation failed
In E:\DataTrust\DTA\BP\BP\_BPTEST at line 101 can not find object/catalog
file: 'SAVEDLISTS\_BpTest_407195971'.


...but on D3 I get:

31 Demo (0)-> BPTEST DIM A(5) ; A(1) = "A" ; A(2) = "B" ; A(3) = "C" ; A(4)
= "D"
 ; A(5) = "E" ; B = A ; CRT B ; END
BpTest*407628781
.
[241] Successful compile!   1 frame(s) used.
A^B^C^D^E


Am I missing something here?  Thanks,

Bill


-Original Message-----
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Dave Walker
Sent: Tuesday, October 03, 2006 5:39 AM
To: 'u2-users@listserver.u2ug.org'
Subject: RE: [U2] Command that is the opposite of MATPARSE.

They work in Unidata...

--
Dave Walker

-----Original Message-----
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Bill Haskett
Sent: Monday, October 02, 2006 8:35 PM
To: u2-users@listserver.u2ug.org
Subject: RE: [U2] Command that is the opposite of MATPARSE.


Mark:

I don't believe this works in the U2 products.  All those little niceties of
D3 are not considered essential in U2.  :-)

Bill


-Original Message-----
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Mark Johnson
Sent: Monday, October 02, 2006 4:14 PM
To: u2-users@listserver.u2ug.org
Subject: Re: [U2] Command that is the opposite of MATPARSE.

I don't know if this would work on U2 but as I was trying to remember this
for D3, I simply equated them as such:

DIM A(100)
MATREAD A FROM FILE, ID ELSE STOP
B=A
PRINT A(49), B<49>

My .001 cents.
Mark Johnson

- Original Message -
From: "Kevin King" <[EMAIL PROTECTED]>
To: 
Sent: Monday, October 02, 2006 6:53 PM
Subject: RE: [U2] Command that is the opposite of MATPARSE.

> >Just curious - Does anyone know if there is a command/function
> >that will do just the opposite (of MATPARSE)?
>
> MATBUILD
>
> -Kevin
> [EMAIL PROTECTED]
> http://www.PrecisOnline.com
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Command that is the opposite of MATPARSE.

2006-10-03 Thread Tom Dodds
You have to DO MAT B = MAT A after you have dim'ed B, but then the CRT B
won't work because it is an array.

Tom Dodds
[EMAIL PROTECTED]
708-234-9608 Office
630-235-2975 Cell

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Bill Haskett
Sent: Tuesday, October 03, 2006 1:25 PM
To: u2-users@listserver.u2ug.org
Subject: RE: [U2] Command that is the opposite of MATPARSE.

Dave:

Really?  I tried the following on UniData v7.1:

3 Demo (0)-> BPTEST DIM A(5) ; A(1) = "A" ; A(2) = "B" ; A(3) = "C" ; A(4) =
"D" ; A(5) = "E" ; B = A ; CRT B ; END

Compiling Unibasic: SAVEDLISTS\BpTest_407195971 in mode 'p'.
redefined variable A near line 7
compilation failed
In E:\DataTrust\DTA\BP\BP\_BPTEST at line 101 can not find object/catalog
file: 'SAVEDLISTS\_BpTest_407195971'.


...but on D3 I get:

31 Demo (0)-> BPTEST DIM A(5) ; A(1) = "A" ; A(2) = "B" ; A(3) = "C" ; A(4)
= "D"
 ; A(5) = "E" ; B = A ; CRT B ; END
BpTest*407628781
.
[241] Successful compile!   1 frame(s) used.
A^B^C^D^E


Am I missing something here?  Thanks,

Bill


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Dave Walker
Sent: Tuesday, October 03, 2006 5:39 AM
To: 'u2-users@listserver.u2ug.org'
Subject: RE: [U2] Command that is the opposite of MATPARSE.

They work in Unidata...

--
Dave Walker

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Bill Haskett
Sent: Monday, October 02, 2006 8:35 PM
To: u2-users@listserver.u2ug.org
Subject: RE: [U2] Command that is the opposite of MATPARSE.


Mark:

I don't believe this works in the U2 products.  All those little niceties of
D3 are not considered essential in U2.  :-)

Bill


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Mark Johnson
Sent: Monday, October 02, 2006 4:14 PM
To: u2-users@listserver.u2ug.org
Subject: Re: [U2] Command that is the opposite of MATPARSE.

I don't know if this would work on U2 but as I was trying to remember this
for D3, I simply equated them as such:

DIM A(100)
MATREAD A FROM FILE, ID ELSE STOP
B=A
PRINT A(49), B<49>

My .001 cents.
Mark Johnson

- Original Message -
From: "Kevin King" <[EMAIL PROTECTED]>
To: 
Sent: Monday, October 02, 2006 6:53 PM
Subject: RE: [U2] Command that is the opposite of MATPARSE.

> >Just curious - Does anyone know if there is a command/function
> >that will do just the opposite (of MATPARSE)?
>
> MATBUILD
>
> -Kevin
> [EMAIL PROTECTED]
> http://www.PrecisOnline.com
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Command that is the opposite of MATPARSE.

2006-10-03 Thread Bill Haskett
Dave:

Really?  I tried the following on UniData v7.1:

3 Demo (0)-> BPTEST DIM A(5) ; A(1) = "A" ; A(2) = "B" ; A(3) = "C" ; A(4) =
"D" ; A(5) = "E" ; B = A ; CRT B ; END

Compiling Unibasic: SAVEDLISTS\BpTest_407195971 in mode 'p'.
redefined variable A near line 7
compilation failed
In E:\DataTrust\DTA\BP\BP\_BPTEST at line 101 can not find object/catalog
file: 'SAVEDLISTS\_BpTest_407195971'.


...but on D3 I get:

31 Demo (0)-> BPTEST DIM A(5) ; A(1) = "A" ; A(2) = "B" ; A(3) = "C" ; A(4)
= "D"
 ; A(5) = "E" ; B = A ; CRT B ; END
BpTest*407628781
.
[241] Successful compile!   1 frame(s) used.
A^B^C^D^E


Am I missing something here?  Thanks,

Bill


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Dave Walker
Sent: Tuesday, October 03, 2006 5:39 AM
To: 'u2-users@listserver.u2ug.org'
Subject: RE: [U2] Command that is the opposite of MATPARSE.

They work in Unidata...

--
Dave Walker

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Bill Haskett
Sent: Monday, October 02, 2006 8:35 PM
To: u2-users@listserver.u2ug.org
Subject: RE: [U2] Command that is the opposite of MATPARSE.


Mark:

I don't believe this works in the U2 products.  All those little niceties of
D3 are not considered essential in U2.  :-)

Bill


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Mark Johnson
Sent: Monday, October 02, 2006 4:14 PM
To: u2-users@listserver.u2ug.org
Subject: Re: [U2] Command that is the opposite of MATPARSE.

I don't know if this would work on U2 but as I was trying to remember this
for D3, I simply equated them as such:

DIM A(100)
MATREAD A FROM FILE, ID ELSE STOP
B=A
PRINT A(49), B<49>

My .001 cents.
Mark Johnson

- Original Message -
From: "Kevin King" <[EMAIL PROTECTED]>
To: 
Sent: Monday, October 02, 2006 6:53 PM
Subject: RE: [U2] Command that is the opposite of MATPARSE.

> >Just curious - Does anyone know if there is a command/function
> >that will do just the opposite (of MATPARSE)?
>
> MATBUILD
>
> -Kevin
> [EMAIL PROTECTED]
> http://www.PrecisOnline.com
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Command that is the opposite of MATPARSE.

2006-10-03 Thread Dave Walker
They work in Unidata...

--
Dave Walker

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Bill Haskett
Sent: Monday, October 02, 2006 8:35 PM
To: u2-users@listserver.u2ug.org
Subject: RE: [U2] Command that is the opposite of MATPARSE.


Mark:

I don't believe this works in the U2 products.  All those little niceties of
D3 are not considered essential in U2.  :-)

Bill


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Mark Johnson
Sent: Monday, October 02, 2006 4:14 PM
To: u2-users@listserver.u2ug.org
Subject: Re: [U2] Command that is the opposite of MATPARSE.

I don't know if this would work on U2 but as I was trying to remember this
for D3, I simply equated them as such:

DIM A(100)
MATREAD A FROM FILE, ID ELSE STOP
B=A
PRINT A(49), B<49>

My .001 cents.
Mark Johnson

- Original Message -
From: "Kevin King" <[EMAIL PROTECTED]>
To: 
Sent: Monday, October 02, 2006 6:53 PM
Subject: RE: [U2] Command that is the opposite of MATPARSE.

> >Just curious - Does anyone know if there is a command/function
> >that will do just the opposite (of MATPARSE)?
>
> MATBUILD
>
> -Kevin
> [EMAIL PROTECTED]
> http://www.PrecisOnline.com
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Command that is the opposite of MATPARSE.

2006-10-02 Thread Kevin King
Or maybe BUILDDIM vs. BUILDDYN?

Dorothy, wake up! ;-)
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Command that is the opposite of MATPARSE.

2006-10-02 Thread Bill Haskett
Mark:

I don't believe this works in the U2 products.  All those little niceties of
D3 are not considered essential in U2.  :-)

Bill


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Mark Johnson
Sent: Monday, October 02, 2006 4:14 PM
To: u2-users@listserver.u2ug.org
Subject: Re: [U2] Command that is the opposite of MATPARSE.

I don't know if this would work on U2 but as I was trying to remember this
for D3, I simply equated them as such:

DIM A(100)
MATREAD A FROM FILE, ID ELSE STOP
B=A
PRINT A(49), B<49>

My .001 cents.
Mark Johnson

- Original Message -
From: "Kevin King" <[EMAIL PROTECTED]>
To: 
Sent: Monday, October 02, 2006 6:53 PM
Subject: RE: [U2] Command that is the opposite of MATPARSE.

> >Just curious - Does anyone know if there is a command/function
> >that will do just the opposite (of MATPARSE)?
>
> MATBUILD
>
> -Kevin
> [EMAIL PROTECTED]
> http://www.PrecisOnline.com
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Command that is the opposite of MATPARSE.

2006-10-02 Thread Stevenson, Charles
I've always thought MATPARSE should have been named MATBUILD,
and MATBUILD should have been called MATPARSE.
Is it just me?

Somehow, I don't think I'll submit this one to the U2UG Enhancement
Forum.
cds
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


Re: [U2] Command that is the opposite of MATPARSE.

2006-10-02 Thread Mark Johnson
I don't know if this would work on U2 but as I was trying to remember this
for D3, I simply equated them as such:

DIM A(100)
MATREAD A FROM FILE, ID ELSE STOP
B=A
PRINT A(49), B<49>

My .001 cents.
Mark Johnson
- Original Message -
From: "Kevin King" <[EMAIL PROTECTED]>
To: 
Sent: Monday, October 02, 2006 6:53 PM
Subject: RE: [U2] Command that is the opposite of MATPARSE.


> >Just curious - Does anyone know if there is a command/function
> >that will do just the opposite (of MATPARSE)?
>
> MATBUILD
>
> -Kevin
> [EMAIL PROTECTED]
> http://www.PrecisOnline.com
>
> ** Check out scheduled Connect! training courses at
> http://www.PrecisOnline.com/train.html.
> ---
> u2-users mailing list
> u2-users@listserver.u2ug.org
> To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


Re: [U2] Command that is the opposite of MATPARSE.

2006-10-02 Thread Stewart Leicester

I understand that in Unidata (6.x), MATPARSE will distribute the
elements of a dynamic array into a dimensioned array.

Just curious - Does anyone know if there is a command/function that will
do just the opposite?  Something that will distribute the contents of a
dimensioned array to a dynamic array?

Nothing in the manual jumped out at me...

TIA

Mick



MATBUILD ?

Stewart
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Command that is the opposite of MATPARSE.

2006-10-02 Thread Kevin King
>Just curious - Does anyone know if there is a command/function 
>that will do just the opposite (of MATPARSE)?

MATBUILD

-Kevin
[EMAIL PROTECTED]
http://www.PrecisOnline.com
 
** Check out scheduled Connect! training courses at
http://www.PrecisOnline.com/train.html.
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


Re: [U2] Command that is the opposite of MATPARSE.

2006-10-02 Thread jpb

MATBUILD
- Original Message - 
From: "Gahan, Mick" <[EMAIL PROTECTED]>

To: 
Sent: Monday, October 02, 2006 5:24 PM
Subject: [U2] Command that is the opposite of MATPARSE.



I understand that in Unidata (6.x), MATPARSE will distribute the
elements of a dynamic array into a dimensioned array.

Just curious - Does anyone know if there is a command/function that will
do just the opposite?  Something that will distribute the contents of a
dimensioned array to a dynamic array?

Nothing in the manual jumped out at me...

TIA

Mick


Mick Gahan
Director, MIS
Metropolitan Community College
Omaha, NE 
---

u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/

---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


[U2] Command that is the opposite of MATPARSE.

2006-10-02 Thread Gahan, Mick
I understand that in Unidata (6.x), MATPARSE will distribute the
elements of a dynamic array into a dimensioned array.

Just curious - Does anyone know if there is a command/function that will
do just the opposite?  Something that will distribute the contents of a
dimensioned array to a dynamic array?

Nothing in the manual jumped out at me...

TIA

Mick


Mick Gahan
Director, MIS
Metropolitan Community College
Omaha, NE 
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/