drawing a point in the graph
3 views (last 30 days)
Show older comments

0 Comments
Answers (2)
Walter Roberson
on 6 Dec 2022
x = 0:0.5:10;
t = (x/2).^2;
abs(x-2*sqrt(t)) %cross-check weether x == 2*sqrt(t)
plot(x, t, '*-')
See Also
Categories
Find more on Change Markers in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!