Does MATLAB have a black hole or discard variable?
Say I'm doing something like:
[ rows cols ] = size( A ) ;
But I do not want the rows to be saved. Is there a black hole variable where I can send values ββto die?
So the appointment will be like
[ BLACKHOLE, cols ] = size( A ) ;
Where BLACKHOLE means to throw away the value and not create a variable for it.
syntax matlab
bobobobo
source share