Recent content by ohaited

  1. O

    I How to get a Chaos Sequence from this Equation?

    Hey man, I know this is quite sometimes but can you help me with this error below? Actually I just got it a few days ago. P/S: I really don't know how to solve this. I've tried to install back again my Python but it doesn't make any changes. Really appreciate some help right here. Thank you...
  2. O

    Java I about how to get a pixel value in Java

    Gee thanks! Hahahaha will work on it and I'll let you know then! :woot:
  3. O

    Java I about how to get a pixel value in Java

    So i should modulus both variables with odd number or even number ? and it looks like this? int k = i % 2; int l = j % 2;
  4. O

    Java I about how to get a pixel value in Java

    Yeah mate, I'm kinda new here. It kinda make sense to me. So should i do this? int k = i % j; Erm.. does it work? Or it doesn't help at all?
  5. O

    Java I about how to get a pixel value in Java

    Good question :oops: erm haven't figure it out yet
  6. O

    Java I about how to get a pixel value in Java

    Oh I see, so after I do the looping, and just modulus the value of i and j before I want to getRGB(), for(int j=0; j<width; j++){ count++; //get pixel value Color c = new Color(img.getRGB(j, i)); int p = img.getRGB(j, i)...
  7. O

    Java I about how to get a pixel value in Java

    Yup, I know how the modulus function works. But I don't know where to implement the modulus function in order to reset itself
  8. O

    Java I about how to get a pixel value in Java

    Erm it's a bit blurry for me to understand. Can you clear me out using codes or references?
  9. O

    Java I about how to get a pixel value in Java

    Oh i see, so is there any alternative I can use to get the RGB values for a larger image that 100px? If you have any suggestion I could use
  10. O

    Java I about how to get a pixel value in Java

    Greetings! Hey guys, I need help on how can I get pixel value of an image with pixels more than 100px (10x10). Here the code that I execute in order to get the pixel value try{ File f = new File ("input image location"); BufferedImage img = ImageIO.read(f)...
  11. O

    I How to check chaotic system using Lyapunov

    Hey there, sorry for not attaching the paper with my question. So here it is: Paper
  12. O

    I How to check chaotic system using Lyapunov

    Greetings! Hey, can anyone help me? I need an explanation how can Lyapunov help me to check the system weather it is chaotic or not. Let say I have this equation Rossler System Eq.(1) So how can you tell that the system have chaotic behavior or not? Does it depends on parameters? or from...
  13. O

    I How to get a Chaos Sequence from this Equation?

    Oh okay then! That's the for the columns. Oh btw, I've tried to execute using ./ but doesn't work. Look at this picture
  14. O

    I How to get a Chaos Sequence from this Equation?

    Hey sir, I got this as output (in the picture below) I want to ask, what's with the four columns. what does it represent? As I changed the 1001 points starting, to 10 points. Can you clear me up?
Back
Top