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
ex1の2.1の項目にある plot(x, y, 'rx', 'MarkerSize', 10); % データをプロットする なのですが、他の行や原文では「x」ではなく「X」と表記されているので、 plot(X, y, 'rx', 'MarkerSize', 10); % データをプロットする に修正した方が良いかと思います。
plot(x, y, 'rx', 'MarkerSize', 10); % データをプロットする
plot(X, y, 'rx', 'MarkerSize', 10); % データをプロットする
The text was updated successfully, but these errors were encountered:
ご指摘ありがとうございます。
確認してみましたが、原文のPDFを見ると、小文字になっているようです。また、plotData.mに定義された関数function plotData(x, y)の引数はxとなっているので、大文字Xではエラーになるのではないかと思います。
plotData.m
function plotData(x, y)
x
X
現在このコースで提供しているPDFと私が受講していた頃のPDFで、内容が違っているのでしょうか。
Sorry, something went wrong.
No branches or pull requests
ex1の2.1の項目にある
plot(x, y, 'rx', 'MarkerSize', 10); % データをプロットする
なのですが、他の行や原文では「x」ではなく「X」と表記されているので、
plot(X, y, 'rx', 'MarkerSize', 10); % データをプロットする
に修正した方が良いかと思います。
The text was updated successfully, but these errors were encountered: