How can I change the dimension of a global variable?
Show older comments
I want to define a global variable:
global v
v=[1 2]
but I have this error: Size mismatch (size [1 x 1] ~= size [2 x 1]). The size to the left is the size of the left-hand side of the assignment. How can I change the dimension of v? In the data store memory?
7 Comments
James Tursa
on 23 Jun 2014
Is this in Simulink?
alessandro
on 23 Jun 2014
alessandro
on 23 Jun 2014
José-Luis
on 23 Jun 2014
Alessandro, if you want better answers, I would suggest you provide better feedback to the people that are trying to help you, instead of basically asking the same question again.
alessandro
on 23 Jun 2014
Also, you would make it easier for people to help you if you:
- Provide more details
- Give a minimum working example reproducing the problem you face. Often, by doing that, you will find the answer yourself.
- Provide feedback to the people that try to help you.
What is the data store memory? Have you tried the debugger?
alessandro
on 23 Jun 2014
Edited: alessandro
on 23 Jun 2014
Answers (1)
Star Strider
on 23 Jun 2014
I cannot reproduce the error in R2014a. It works even if I assign v before I declare it as a global. However this:
v = pi
global v
v = [1 2]
throws this warning:
Warning: The value of local variables may have been changed to match the globals. Future versions of MATLAB will
require that you declare a variable to be global before you use that variable.
What version are you using?
1 Comment
alessandro
on 23 Jun 2014
Edited: alessandro
on 23 Jun 2014
Categories
Find more on Simulink in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
