Skip to content
Snippets Groups Projects
module2_examples.m 87 B
Newer Older
  • Learn to ignore specific revisions
  • vand's avatar
    vand committed
    %% module 2, example 0
    
    a = 50;
    b = sqrt(a);
    disp(b)
    
    
    %%  composition
    disp(sqrt(50))