필터 지우기
필터 지우기

how to create continuous variables

조회 수: 4 (최근 30일)
uic
uic 2014년 11월 19일
댓글: Star Strider 2014년 11월 21일
hello all :
I need to run a loop for 10000 times and in every iteration, i get an array of values. I need to assign this array of values to a different variable(A1, A2 ,A3,A4,...) in every iteration. what conditions should i use to create the variables ion the same loop?

답변 (3개)

Star Strider
Star Strider 2014년 11월 19일
Don’t do that!
Name your variables (with k being your iteration counter):
A(:,k) = ... % Column Vectors
A(k,:) = ... % Row Vectors
A(:,:,k) = ... % Matrices
  댓글 수: 1
Star Strider
Star Strider 2014년 11월 21일
You will have to be more specific.
What do you want your variables to contain? Row vectors? Column vectors? Matrices?
How are you creating them? Calculations? Reading files?
We need more information if you want us to help you. Ambiguous questions will result in equally ambiguous answers.

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


Image Analyst
Image Analyst 2014년 11월 19일
Don't do it. Why not? See the FAQ.

uic
uic 2014년 11월 21일
But when i tried the above code, there are no new variables being variables being created. I want a code to generate 1000 new variables every time a condition is executed , to store 1000 different variables. I cannot use alphabets because they are only 26. And i cannot assign my valuers to a number. Help me out.

카테고리

Help CenterFile Exchange에서 Function Creation에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by