matlab equivalent of "+="

조회 수: 1,709 (최근 30일)
Samuel
Samuel 2011년 10월 11일
댓글: Real User 2024년 1월 31일
Hello all,
First of all, I would like to say thanks for all your help. Your prompt and accurate replies save me a lot of programming time.
When I used to program in java, there was a useful command, so to say:
"counter+="
which will increment the variable itself. This was a useful function to use in for loops. I was wondering if matlab had a shortcut expression such as this, something that I can use in an array even, so like
somearray[i]+=; can work? Or is the only available option to say counter=counter+1? I just want to see if there was a faster way to write the expression.
thanks!
Sam

채택된 답변

Sean de Wolski
Sean de Wolski 2011년 10월 11일
for-loops automatically increment and any reassignment inside the loop will be reset at the next increment:
for ii = 1:10
disp(ii)
ii = 5000;
end
To be able to toy with the counter use a while loop and to the assignment manually
count = count+1;
  댓글 수: 6
Adam
Adam 2018년 4월 10일
It's annoying to type, but why is it 'not efficient'?
Ilya Gurin
Ilya Gurin 2020년 7월 10일
It's annoying both to type and to read.

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

추가 답변 (1개)

Walter Roberson
Walter Roberson 2011년 10월 11일
MATLAB does not have ++ or += or -- or -= or *= or /= or %= and is not expected to get any of those for some time (if at all.)
I think if you look back at your Java you will find it was ++ rather than += that you were using for incrementing.
  댓글 수: 4
Andrew
Andrew 2024년 1월 18일
@Alexandre Sagona Strong agree; I wish my MATLAB class at uni would just let me use C instead.
Real User
Real User 2024년 1월 31일
data(complex_index_sequence, another_one) = data(complex_index_sequence, another_one) + data2
would benefit from "+=". It would be much easier to read and maintain.
It helps a bit to define the indices separately before that line, but "+=" would be better.

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

카테고리

Help CenterFile Exchange에서 Data Type Identification에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by