MathGroup Archive 2007

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

Search the Archive

Re: Easy Mapping problem that has me stumped!

  • To: mathgroup at smc.vnet.net
  • Subject: [mg82780] Re: [mg82743] Easy Mapping problem that has me stumped!
  • From: Carl Woll <carlw at wolfram.com>
  • Date: Wed, 31 Oct 2007 06:03:23 -0500 (EST)
  • References: <200710300830.DAA13635@smc.vnet.net>

RicoS wrote:

>I'm trying to iterate through a list and add x to different elements, got that. But I want to keep the values <= 1.
>I have something like this:
>
>m = {{{0, 1, 1}, {1, 0, 1}, {1, 1, 0}}, {{1, 0, 0}, {0,1,0}, {0,0,1}}}
>
>Manipulate[Map[# + ({x, y, z}) &, m, {2}], {x, 0, 1}, {y, 0, 1}, {z, 0, 1}]
>
>That works great. But I want to keep x,y & z <=1. (It'a a threshold thing)
>
>How should I apply Min? I've tried everything I can think of, but I'm a total noob.
>Thanks for your help!!
>  
>
Try using Clip:

Manipulate[
 Clip[Map[# + ({x, y, z}) &, m, {2}], {0, 1}], {x, 0, 1}, {y, 0,
  1}, {z, 0, 1}]

Carl Woll
Wolfram Research


  • Prev by Date: Re: Converting notebooks to use Mathematica Player
  • Next by Date: Re: Easy Mapping problem that has me stumped!
  • Previous by thread: Easy Mapping problem that has me stumped!
  • Next by thread: Re: Easy Mapping problem that has me stumped!