photo

Walter Fanka


Active since 2017

Followers: 0   Following: 0

Statistics

  • First Answer

View badges

Feeds

View by

Answered
How to remove ticks from the x-axis?
set(gca,'TickLength',[0 .01]) % where 0 is the length of ticks on the x-axis and % .01 is the length on the y-axis. So in th...

5 years ago | 1

Answered
Is this working right
function [s1,s2,s3] = sort3(v_3) a = v_3(1); b = v_3(2); c = v_3(3); if a <= b && a <= c s1 = a; if b <= c s2 = b; s3 = c; els...

7 years ago | 0