How to store an x-y coordinate under one Variable
Show older comments
Hi!
I want to be able to store the x and y coordinates under one variable name, which then I would like to be able to say plot(variable), and it display the x-y coordinate.
For example, if
x=455
y=340
B=x & y
I would like B to equal (x,y).
Then when I plot(B), it would plot the x and y coordinate.
Is there a consice way to plot this?
The solution I currently have is:
x=455
y=340
figure; plot(x, y)
However, this is not ideal as I have a lot of data points and would like to call them up quickly. Is there a way to store them in a variable and then call them up?
Accepted Answer
More Answers (1)
Giselle Tiede
on 11 Nov 2019
0 votes
Categories
Find more on 2-D and 3-D Plots 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!