Writing "this" class' properties?

7 visualizaciones (últimos 30 días)
Eleftherios Ioannidis
Eleftherios Ioannidis el 22 de Mzo. de 2011
Hi, I am new to Matlab classes. I want to change the value of some properties in a function called ChangeProperties from within the class. But I can't do it. What am I doing wrong?
classdef agent_type
properties
v
id
end
methods
function p=agent_type(i)
p.id=i;
p.v=10*randn(1,2);
end
function y=ChangeProperties(this,step)
[this.v(step,:)]=zeros(1,2);
y=[this.v(step,:)];
end
end
end
when I run: agent.ChangeProperties(2) I get a random 1x2 vector. It should be a zero 1x2 vector. Why does this.v remain the same?
Thank you
  2 comentarios
Andrew Newell
Andrew Newell el 23 de Mzo. de 2011
I'm not sure what you're trying to do. Do you want to change your agent and also return a vector, or just change your object?
Andrew Newell
Andrew Newell el 23 de Mzo. de 2011
Also, what is step supposed to do? As written, it is adding rows when step > 1.

Iniciar sesión para comentar.

Respuesta aceptada

Andrew Newell
Andrew Newell el 23 de Mzo. de 2011
I'm just guessing at what you're trying to do, but here is a different version of your method:
function y=ChangeProperties(this,vnew)
y = this;
y.v=vnew;
end
Then if you run
a = agent_type(1);
a = a.ChangeProperties([0 0])
you get
a =
agent_type
Properties:
v: [0 0]
id: 1
  1 comentario
Eleftherios Ioannidis
Eleftherios Ioannidis el 23 de Mzo. de 2011
Great answer Andrew, as always. Thank you. Also, thank you for the pm.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Class Introspection and Metadata en Help Center y File Exchange.

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by