Info

Cette question est clôturée. Rouvrir pour modifier ou répondre.

How do I pass subsets of matrices to scatter?

1 vue (au cours des 30 derniers jours)
Jon Camilleri
Jon Camilleri le 25 Nov 2015
Clôturé : MATLAB Answer Bot le 20 Août 2021
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 commentaires
Guillaume
Guillaume le 25 Nov 2015
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 le 25 Nov 2015
"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.

Réponses (0)

Tags

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by