hi guys i' m noob at matlab and i wonder what the differences array definition for example:
1.) abc=[ 0 0 0 0 0 0]
2.) abc=[0;0;0;0;0;0]
in C ,first definition is int abc[]={0,0,0,0,0,0};
second definition is int [6][1]= {{0},{0},{0},{0},{0},{0}};
am i correct about that? any help will be appreciated.