Re: Using methods from packages
- To: mathgroup at smc.vnet.net
- Subject: [mg68156] Re: [mg68125] Using methods from packages
- From: Francisco Gutierrez <fgutiers2002 at yahoo.com>
- Date: Wed, 26 Jul 2006 02:26:20 -0400 (EDT)
- Sender: owner-wri-mathgroup at wolfram.com
Dear Group:
I want to import sections from a big spreadsheet with data. The problem is that I would want to import only certain rows and columns, not all the sheet. Is there a form of doing this? I didn´t find it in the documentation!
Best,
Fg
akil <akomur at wanadoo.nl> wrote:
I've got a problem again.
Example:
I have two packages vanConesNaarRelevanteConesAutomated.m and
pasAanVolgordes.m where the first package uses a method/function from the
second package.
e.g.
volgordeCones = pasAanVolgordes[volgordeCones, volgordeLinksOnderVertex]
where volgordeCones and volgordeLinksOnderVertex are symbols inside the
function vanConesNaarRelevanteConesAutomated inside the package with the
same name. pasAanVolgordes is the function from the second package.
BeginPackage["vanConesNaarRelevanteConesAutomated`","pasAanVolgordes`","ConesNaarRelevanteCones`",
"DiscreteMath`ComputationalGeometry`","Geometry`Rotations`"] is how the
first package is called.
Instead of this working as it should I get teh following result:
pasAanVolgordes[{{1, 2, 17, 18}, {2, 3, 18, 19}, {3, 4, 19, 20}, {4, 5, 20,
21}, {5, 6, 21, 22}, {6, 7, 22, 23}, {7, 8, 23, 24}, {8, 9, 24,
25}, {9, 10, 25, 26}, {10, 11, 26, 27}, {11, 12, 27, 28}, {12, 13, 28,
29}, {13, 14, 29, 30}, {14, 15, 30, 31}, {15, 16, 31, 32}, {16, 17,
32, 1}},
vanConesNaarRelevanteConesAutomated`Private`volgordeLinksOnderVertex$];
What do i do wrong?