GNU Octave - question about graphs and plotting

Posted by Twórca on Ask Ubuntu See other posts from Ask Ubuntu or by Twórca
Published on 2013-10-26T16:02:05Z Indexed on 2013/10/26 16:08 UTC
Read the original article Hit count: 273

Filed under:

Get Rid of it

I've had task to do - to make an graphical interpretation of adding two functions together: sin(8x) and multiplied -sign(x) in Octave, as shown on image above. And I've done that, but I don't know how to get rid of these lines, which link up gaps between separated values (for example, -1 and 1). I don't want them to be seen especially in third graph.

To make helping me easier, I'm going to tell you what I did:

  1. I made linear series of numbers, from -100 to 99 (tempx).
  2. tempy = -sign(tempx)
  3. y1 = [tempy tempy tempy tempy] (this line is kinda funny, if you know Polish language)
  4. Creating y2 - sinus function
  5. y3 = y2 + y1
  6. Plotting, subplotting...
  7. Screenshot

Awaiting for instructions...

© Ask Ubuntu or respective owner

Related posts about octave