MathGroup Archive 2013

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

Search the Archive

Re: Dynamic application of several polynomials

  • To: mathgroup at smc.vnet.net
  • Subject: [mg130166] Re: Dynamic application of several polynomials
  • From: Bob Hanlon <hanlonr357 at gmail.com>
  • Date: Sat, 16 Mar 2013 03:15:20 -0400 (EDT)
  • Delivered-to: l-mathgroup@mail-archive0.wolfram.com
  • Delivered-to: l-mathgroup@wolfram.com
  • Delivered-to: mathgroup-newout@smc.vnet.net
  • Delivered-to: mathgroup-newsend@smc.vnet.net
  • References: <20130315054810.A273A69C3@smc.vnet.net>

x = Range[27000]/27001.;
f = {25.62, -38.43, 21.81}/9;

Clear[y];
y = (f.#^{3, 2, 1} &) /@ x;
ListLinePlot[y]

polynomials =
  Map[{9 - #[[1]] - #[[2]], #[[1]], #[[2]]} &,
    Flatten[Outer[
      List, -{23.75, 28.02, 32.29, 36.56, 40.83, 45.1, 49.37, 53.64,
        57.91, 62.18}, {13.48, 15.9, 18.33, 20.75, 23.17, 25.6, 28.02,
        30.44, 32.87, 35.29}], 1]]/9;

Clear[y];
y[f_] := (f.#^{3, 2, 1} &) /@ x;

ListLinePlot[Evaluate[y /@ polynomials],
 Frame -> True, Axes -> False,
 ImageSize -> 500]


Bob Hanlon


On Fri, Mar 15, 2013 at 1:48 AM, Samuel <samuelsiqueira at gmail.com> wrote:
> I know how to get the 'resulting image' (y) from the application of a certain function (f) (here represented as the coefficients of a polynomial) over a certain interval (x):
>
> x = Range[27000]/27001.;
> f = {25.62, -38.43, 21.81}/9;
> y = Map[f[[1]]*#^3 + f[[2]]*#^2 + f[[3]]*# &, x];
> ListPlot[y]
>
> How do i get the 'resulting images' from the application of several polynomials (represented as its coefficients) over a certain interval (x)?
>
> Considering the representation of those several polynomials to be something like:
>
> polynomials = Map[{9 - #[[1]] - #[[2]], #[[1]], #[[2]]} &, Flatten[Outer[List, -{23.75, 28.02, 32.29, 36.56, 40.83, 45.1, 49.37, 53.64, 57.91, 62.18}, {13.48, 15.9, 18.33, 20.75, 23.17, 25.6, 28.02, 30.44, 32.87, 35.29}], 1]]/9;
>



  • Prev by Date: Re: Multiple independent random number streams cannot be implemented.
  • Next by Date: variables/objects with sequential naming?
  • Previous by thread: Dynamic application of several polynomials
  • Next by thread: Re: Dynamic application of several polynomials