Login  Register

Re: variable in "Remove slices..."

Posted by Ryan Deaton on Jan 26, 2009; 5:58pm
URL: http://imagej.273.s1.nabble.com/Re-variable-in-Remove-slices-tp3693917p3693918.html

Probably syntax.  

run("Remove Slices...", "first=" + a + "last=" + b + "increment=2");

Ryan Deaton
Pathology Information Systems Specialist
University of Illinois at Chicago
312-355-4338
 
-----Original Message-----
From: ImageJ Interest Group [mailto:[hidden email]] On Behalf Of Damon
Poburko
Sent: Monday, January 26, 2009 11:24 AM
To: [hidden email]
Subject: Re: variable in "Remove slices..."

Hi all,

  I am using the "Remove slcies..."  function in a macro, and I would
like to be able to set the first and last images using variables.
If I use the  methods below... not problems:
run("Remove Slices...", "first=1 last=15 increment=2");

but I would like to be able to set first=X and last=Y dynamically to
make the macro more robust., unfornuately the following doesn't work.
a =  X
b = Y
run("Remove Slices...", "first=a last=b increment=2"); // where a and b
are integer variables.
 
Is this not possible, or have I just messed up with my syntax?

Cheers,
Damon