首页 > 解决方案 > 在八度音程中运行时,我在所有程序中都遇到了类似的错误

问题描述

function plotData(X, y)
%PLOTDATA Plots the data points X and y into a new figure 
%   PLOTDATA(x,y) plots the data points with + for the positive examples
%   and o for the negative examples. X is assumed to be a Mx2 matrix.

% Create New Figure
figure; hold on;

% Find Indices of Positive and Negative Examples
pos = find(y == 1); 
neg = find(y == 0);

% Plot Examples

plot(X(pos, 1), X(pos, 2), 'k+','LineWidth', 2, ...
'MarkerSize', 7);
plot(X(neg, 1), X(neg, 2), 'ko', 'MarkerFaceColor', 'y', ...
'MarkerSize', 7);

hold off;

end

结果

octave:17> plotData ()
error: 'y' undefined near line 10 column 12
error: called from
    plotData at line 10 column 5

标签: octave

解决方案


推荐阅读