so the idea here is to read data into a matrix, and then make that matrix a square matrix by removing the excess column(s) or row(s), but vectorized, without using any loops at all and without using if/else. is this possible?
this is the way i have it done with loop and if/else
load file.dat
r = num2str(size('file',1))
c = num2str(size('file',2))
while (r~=c)
if (r>c)
r--
else (c>r)
c--
end
res = file(1:r,1:c)
save('squarefile.dat', 'res', '-ascii')
thank you
r = r-1andc = c-1instead ofr--andc--– Dennis Jaheruddin Feb 15 at 8:45