Borrar filtros
Borrar filtros

Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

How do I pass subsets of matrices to scatter?

1 visualización (últimos 30 días)
Jon Camilleri
Jon Camilleri el 25 de Nov. de 2015
Cerrada: MATLAB Answer Bot el 20 de Ag. de 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 comentarios
Guillaume
Guillaume el 25 de Nov. de 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 el 25 de Nov. de 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.

Respuestas (0)

La pregunta está cerrada.

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by