You are now following this Submission
- You will see updates in your followed content feed
- You may receive emails, depending on your communication preferences
IncVar class can increment or decrement a variable when it is called which can simplify code, especially array indexing. Intended to be used as an alternative for i++, but technically it pre-increments the variable, so it's behavior is like ++i.
Example usage (creating a cell array where order is important but not index position):
A{1} = 'The quick';
A{2} = ' brown fox';
A{3} = ' jumps over';
A{4} = ' the lazy';
A{5} = ' dog.';
Can be written as:
i = IncVar;
A{i.i} = 'The quick';
A{i.i} = ' brown fox';
A{i.i} = ' jumps over';
A{i.i} = ' the lazy';
A{i.i} = ' dog.';
Inserting cells into the array does not require editing the indexes:
i = IncVar;
A{i.i} = 'The quick';
A{i.i} = ', stealthy';
A{i.i} = ' brown fox';
A{i.i} = ' launches a triple-twist and'
A{i.i} = ' jumps over';
A{i.i} = ' the lazy';
A{i.i} = ' dog.';
Example usage (indexing for nested for loops):
k = 1;
for i = 1:10
for j = 1:10
A(k) = i*j;
k = k + 1;
end
end
Can be written as:
k = IncVar;
for i = 1:10
for j = 1:10
A(k.i) = i*j;
end
end
Cite As
ADragon (2026). IncVar (https://uk.mathworks.com/matlabcentral/fileexchange/68316-incvar), MATLAB Central File Exchange. Retrieved .
Acknowledgements
Inspired by: inc
General Information
- Version 1.0.0 (1.3 KB)
MATLAB Release Compatibility
- Compatible with R2008a and later releases
Platform Compatibility
- Windows
- macOS
- Linux
| Version | Published | Release Notes | Action |
|---|---|---|---|
| 1.0.0 |
