MathGroup Archive 2005

[Date Index] [Thread Index] [Author Index]

Search the Archive

Passing options through user-defined functions

  • To: mathgroup at smc.vnet.net
  • Subject: [mg58967] Passing options through user-defined functions
  • From: Joe Christy <joe at eshu.net>
  • Date: Mon, 25 Jul 2005 01:30:11 -0400 (EDT)
  • Sender: owner-wri-mathgroup at wolfram.com

I have a function implemnted as module which uses various builtin
functions. What is the best way to pass options to the builtin functions?

For example, I have something like

foo[p,q]:=
Module[
	{bar},
	bar=Table[
		f[x,y],
		{x,1,p},{y,1,q}
	];
	ArrayPlot[bar]
]

and I would like to be able to write something like

foo[3,5, size -> 100]

and see the results of ArrayPlot[bar, ImageSize->{3*100,5*100}]
-- 
============================= Joe Christy ==============================
------------------ http://public.xdi.org/=joe.christy ------------------
== If I can save you any time, give it to me, I'll keep it with mine. ==


  • Prev by Date: Freeware Mathematica packages(don't know the exact term)
  • Next by Date: Re: Casting a Command as a String
  • Previous by thread: Re: Freeware Mathematica packages(don't know the exact term)
  • Next by thread: Re: Passing options through user-defined functions