필터 지우기
필터 지우기

How can I change the dimension of a global variable?

조회 수: 1 (최근 30일)
alessandro
alessandro 2014년 6월 23일
편집: alessandro 2014년 6월 23일
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
José-Luis
José-Luis 2014년 6월 23일
편집: José-Luis 2014년 6월 23일
Also, you would make it easier for people to help you if you:
  1. Provide more details
  2. Give a minimum working example reproducing the problem you face. Often, by doing that, you will find the answer yourself.
  3. Provide feedback to the people that try to help you.
What is the data store memory? Have you tried the debugger?
alessandro
alessandro 2014년 6월 23일
편집: alessandro 2014년 6월 23일
ok, I try to explain with more details. I have to simulate an inverter modulation in simulink. In the image I show which blocks I've used. Inside the Matlab function there is the code. In this code I've to define a global variable, so I used a Data Store Memory(Help Matlab) like in the second image. In the code I just define a funcion like:
global v
v=[1 2]
but didn't work. 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. So I want to change the dimension of the global variable.

댓글을 달려면 로그인하십시오.

답변 (1개)

Star Strider
Star Strider 2014년 6월 23일
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?

카테고리

Help CenterFile Exchange에서 Classical Control Design에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by