Assigning outputs variable names

5 visualizaciones (últimos 30 días)
Julia de Lange
Julia de Lange el 27 de Jul. de 2018
Comentada: N/A el 30 de Jul. de 2018
I'm using the function findchangepts, which outputs 2 numerical values for me. I'd like to use these values and manipulate them further. How can I assign them separate variable names?
Thank you!
SamplNum = findchangepts(SensV, 'MaxNumChanges', 2);
% code
end
which gives
SamplNum =
21194
21609
So I'd like to assign both of those sample numbers a variable in order to manipulate them.
Thanks for your help, sorry if this is a simple question/answer, I'm new to Matlab!
  2 comentarios
Star Strider
Star Strider el 27 de Jul. de 2018
‘How can I assign them separate variable names?’
Please don’t. That is not considered to be good programming practice.
Just use them as they are, and refer to them with the appropriate subscripts.
Stephen23
Stephen23 el 27 de Jul. de 2018
If you really want to create two variables from the first two elements of the output vector, then use indexing:
SamplNum = findchangepts(SensV, 'MaxNumChanges', 2);
A = SamplNum(1)
B = SamplNum(2)
Note that this is not a general solution: the best solution would be to leave the data in the vector, where is easy to process, no matter how many elements it contains.
Basic MATLAB concepts, like how to use indexing and how to define variables, are explained in the introductory tutorials:

Iniciar sesión para comentar.

Respuesta aceptada

N/A
N/A el 27 de Jul. de 2018
I am not sure how the function is working, but you could simply do
Variable_1=SamplNum(1);
Variable_2=SamplNum(2);
or you do
[Variable_1, Variable_2] = findchangepts(SensV, 'MaxNumChanges', 2);
and adapt the code in-between.
  2 comentarios
Stephen23
Stephen23 el 27 de Jul. de 2018
Editada: Stephen23 el 27 de Jul. de 2018
@Philipp Heinirch: given that findchangepts only has one output argument, what do you expect this to do?:
[Variable_1, Variable_2] = findchangepts(...)
What happened when you tried this?
N/A
N/A el 30 de Jul. de 2018
Oh yeah, you are right. did not properly pay attention to this. My bad.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Get Started with MATLAB en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by