Accessing value of a variable inside a function
Mostrar comentarios más antiguos
I have a variable, " c " defined outside a function as shown (just an example):
c=5;
function sum = add(a, b)
sum = a+b+c
end
Calling the add function by giving inputs for a, b Matlab throws an error saying : Local function name must be different from the script name. I want the value of the variable "c" to be accessed within the function so that if I give input of (2,3) for (a,b) I should be getting an output of sum = 10. Everything works fine if the variable " c " is inside the function but doesnt work when its outside the function. I tried to globally define the variable "c" like:
global c
c=5;
function sum = add(a, b)
global c
sum = a+b+c
end
But still Mathlab throws an error. Can anybody help me with this?
1 comentario
Stephen23
el 30 de Dic. de 2020
I suspect that you should be parameterizing the function:
Avoid global variables, they cause more problems than they solve.
Respuesta aceptada
Más respuestas (1)
Walter Roberson
el 30 de Dic. de 2020
Editada: Walter Roberson
el 30 de Dic. de 2020
0 votos
When you define a script, and you define a function inside the script, then the name of the function cannot be the same as the name of the script.
Also, when you define a variable in a script, functions defined in the script do not have access to the variable. Shared variables are possible only with nested functions.
I suggest that you read
9 comentarios
Mahith Madhana Kumar
el 30 de Dic. de 2020
Editada: Mahith Madhana Kumar
el 30 de Dic. de 2020
Image Analyst
el 30 de Dic. de 2020
Upload add.m, time.m, and frequency.m.
Mahith Madhana Kumar
el 30 de Dic. de 2020
Editada: Mahith Madhana Kumar
el 30 de Dic. de 2020
Walter Roberson
el 30 de Dic. de 2020
You cannot normally access a variable defined inside another function, but see
Mahith Madhana Kumar
el 30 de Dic. de 2020
Image Analyst
el 30 de Dic. de 2020
Did you put
global ff;
inside BOTH frequency.m AND time.m?
Mahith Madhana Kumar
el 30 de Dic. de 2020
Mahith Madhana Kumar
el 31 de Dic. de 2020
Categorías
Más información sobre Third-Party Cluster Configuration en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!






