I am writing a code and i need to select all the Y axis values, I am doing it in MatLab using this format S(1,:)
where ":" means to select all the values in Y-axis.
Here is the code:
s(iii, CInt(t(iii))) = r / t(iii)
s(iii, CInt(t1(iii))) = r / t1(iii)
s(iii, CInt(t2(iii))) = r / t2(iii)
I need to write:
SS = t(ii)*s(ii,:)
Also, what is the equivalent to imagesc( , , ) "Matlab" in Visual basic 2012 ?
As i need to draw the (distance ,time and the amplitude)
Amplitude could be drawn as a color scale !
Thanks in advance.