gpt4 book ai didi

matlab - Octave/Matlab - 无法/绘制数据

转载 作者:太空宇宙 更新时间:2023-11-03 19:30:52 24 4
gpt4 key购买 nike

我有一个简单的数据文件,如下所示:

data.txt
34.62365962451697,78.0246928153624,0
30.28671076822607,43.89499752400101,0
35.84740876993872,72.90219802708364,0
60.18259938620976,86.30855209546826,1
79.0327360507101,75.3443764369103,1

我正在尝试使用以下代码绘制其数据:

data = load('data.txt');
X = data(:, [1, 2]); y = data(:, 3);

plotData(X, y);

hold on;

xlabel('Exam 1 score')
ylabel('Exam 2 score')

legend('Admitted', 'Not admitted')
hold off;

pause;

但是这给我带来了以下错误:

warning: legend: plot data is empty; setting key labels has no effect
error: legend: subscript indices must be either positive integers less than 2^31 or logicals

什么都没有绘制。

我不明白这是怎么回事。工作目录在 Octave 内很好。

我该如何解决这个问题?

非常感谢

最佳答案

您正在尝试 Andrew Ng 在 coursera 上的机器学习类(class)第三周的作业。在 ex2.m 文件中,有一个函数 plotData(X,y) 的调用,它指的是 plotData.m 文件中编写的函数。您可能认为 plotData 是 Octave 中的默认函数,但实际上您需要在 plotData.m 文件中实现该函数。这是我在 plotData.m 文件中的代码。

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;

% ====================== YOUR CODE HERE ======================
% Instructions: Plot the positive and negative examples on a
% 2D plot, using the option 'k+' for the positive
% examples and 'ko' for the negative examples.
%

pos = find(y==1);
neg = find(y==0);
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

关于matlab - Octave/Matlab - 无法/绘制数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29501716/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com