pastebin - collaborative debugging tool
rovema.kpaste.net RSS


simple console ksh93 sinus plotter #001
Posted by Anonymous on Wed 27th Apr 2022 17:11
raw | new post
view followups (newest first): simple console ksh93 sinus plotter #001 by Anonymous
modification of post by Anonymous (view diff)

  1. #!/usr/bin/ksh93
  2.  
  3. compound c=(
  4.         compound tty=(
  5.                 integer max_x
  6.                 integer max_y
  7.         )
  8.  
  9.         compound data=(
  10.                 float -a vals
  11.                 float min=0
  12.                 float max=0
  13.         )
  14.        
  15. )
  16.  
  17. (( c.tty.max_x=$(tput cols)-2 ))
  18. (( c.tty.max_y=$(tput lines)-2 ))
  19.  
  20. integer i
  21. integer max_i=${c.tty.max_x}
  22.  
  23. for ((i=0 ; i < max_i ; i++ )) ; do
  24.         (( c.data.vals[i]=sin(i/5.) ))
  25. done
  26.  
  27. for i in "${!c.data.vals[@]}" ; do
  28.         (( c.data.min=fmin(c.data.vals[i], c.data.min) ))
  29.         (( c.data.max=fmax(c.data.vals[i], c.data.max) ))
  30. done
  31.  
  32. clear
  33.  
  34. for ((i=0 ; i < max_i ; i++ )) ; do
  35.         tput cup $(( int( (c.tty.max_y/2.)*((c.data.min*-1.0)+c.data.vals[i])) )) $i
  36.         printf '.'
  37. done
  38.  
  39. tput cup ${c.tty.max_y} ${c.tty.max_x} ; print
  40.  
  41. #print -v c
  42.  
  43. # EOF.

Submit a correction or amendment below (click here to make a fresh posting)
After submitting an amendment, you'll be able to view the differences between the old and new posts easily.

Syntax highlighting:

To highlight particular lines, prefix each line with {%HIGHLIGHT}




All content is user-submitted.
The administrators of this site (kpaste.net) are not responsible for their content.
Abuse reports should be emailed to us at