我目前在Matlab中有一个绘图,其中从* .csv文件导入的数据以散点图的形式绘制了数千个点。使用hold on
命令,我还在由6个点组成的同一图上绘制了一个线图。我提到的所有散点图都在这条线上。
我的代码的简化版本如下:
hold on
plot(results.data(:,9), results.data(:,10),'LineWidth',1.5) % linegraph
plot(results.data(:,5),results.data(:,6),'.','Color', [0.9290 0.6940 0.1250]) % first group of points
plot(results.data(:,3),results.data(:,4),'.','Color', 'r') % second group of points
hold off
我现在正尝试求和所有这数千个点(无论组)的距离,并最好将此值写入工作空间中的变量。 Matlab有办法做到这一点吗?我现在不确定从哪里开始,所以我们将不胜感激!