フィルターのクリア

Info

この質問は閉じられています。 編集または回答するには再度開いてください。

How do I pass subsets of matrices to scatter?

1 回表示 (過去 30 日間)
Jon Camilleri
Jon Camilleri 2015 年 11 月 25 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
I am trying to draw a small graph based on regression. This code does not work.
function [ score ] = classifyData( file )
%UNTITLED Summary of this function goes here
% Detailed explanation goes here
% Written by J. Camilleri B.Sc IS&M
load(file);
%scatter(data(:,0), data(:, 1), 'o'); #debug
%r = mean(file(:,0));
%c = sum(file(:,1));
title('Distribution of iris data');
xlabel('data');
ylabel('numeric data');
score = mean(file);
scatter(r,c,'o');
end
%References #BUG - originally written in Python.
%1. AIMotion blog - http://pythonbrasil.github.io/pythonbrasil11-site/
%using regression.
%2. Archive at ics.edu.mt/ UoM.
  3 件のコメント
Guillaume
Guillaume 2015 年 11 月 25 日
This forum has a proper way of formatting code. I've done it for you this time. To format some text as code, you can either:
  • paste your code, select it all, and click on the {}Code button.
  • put two blank spaces in front of each line of code.
Note that when you write your post, there is also a help button which gives more details on how to format your post.
Guillaume
Guillaume 2015 年 11 月 25 日
"This code does not work".
You now know one thing that does not work. We can write a million others that do not work, but we certainly have no clue about what would work since you haven't given us any detail about what you want, what inputs you have and what should be done with them.

回答 (0 件)

この質問は閉じられています。

タグ

製品

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by