Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
同じ長さの 2 つのベクトルがあり、最初のベクトルを X 値として、2 番目のベクトルを Y 値として扱い、グラフ上に (x,y) ポイントを表示したいと考えています。
Matlab でこの単純なことを行うにはどうすればよいですか?
ありがとう!!!
必要なのはplot(x, y)だけのようです。
たとえば、「ドット」をプロットするには を使用しますplot(x, y, '.')。使用するマーカーのその他の例については、添付のリンクを参照してください。
plot(x, y, '.')