We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
My code:
require 'nyaplot' require 'nyaplot3d' x=[];y=[];z=[] -10.step(10, 0.5) do |i| -10.step(10, 0.5) do |j| x.push(i) y.push(j) z.push(Math.sin(Math.sqrt(i*i+j*j))/Math.sqrt(i*i+j*j)) end end z.map!{|val| next (val.nan? ? 0 : val)} #(0,0) wil plot = Nyaplot::Plot3D.new plot.add(:surface, x, y, z) plot.show
Error:
Javascript error adding output! TypeError: Cannot read property 'pane' of undefined See your browser Javascript console for more details.
The text was updated successfully, but these errors were encountered:
Have been getting the exact same error. Any solutions so far?
Sorry, something went wrong.
No branches or pull requests
My code:
Error:
The text was updated successfully, but these errors were encountered: