Properties
Similar Topics
Statistics
Comments
9
Participants
4
Subscribers
4
Votes
3
Views
950
Share
Answered
Is there a way to plot the points of a graph without the entire function? For example, if I wanted to plot the points of y=x^2 for all integer values of x is there a command I can use, or do I have to just do it manually?
- GeoGebra
- Help
- Partners
-
Contact us
- Feedback & Questions
- This email address is being protected from spambots. You need JavaScript enabled to view it.
- +43 677 6137 2693
© 2022 International GeoGebra Institute
You can use Sequence((p, p²), p, -100, 100). You might as well use a slider to define the min and max of the points shown, to show the points one by one, dragging the slider. With a slider s you could use something like Sequence((p, p²), p, -5, s).
chris
Also to use the y=x^2 object directly
Is there a way that I could do this for the points of an ODE? For example, could I graph the integer points of S?
https://help.geogebra.org/t...
Using First(S,2500) I'm able to generate this, but is there a way to set the interval? I'm getting hundredths but am trying to just get integers. Would I use some sort of domain restriction?
I was able to figure it out: Using l1=First(S,2500), I did sequence(l1(100p),p,0,25) and got only the integer points. Thank you for the help everybody!
keepif(isinteger(x(P)),P,l1)
please post your file and we can help you
Thanks for the keep command. It seems to be more optimized than my sequence command. Here is the finished file.
Comments have been locked on this page!