Advertisement
Guest User

Untitled

a guest
May 4th, 2016
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. disp('Hello World')
  2.  
  3. function [] = Helloworld()
  4. disp('Hello World')
  5. end
  6.  
  7. HelloWorld();
  8.  
  9. gmake -f Helloworld_rtw.mk build
  10.  
  11. function [y] = Helloworld(u)
  12. y = 2*u;
  13. end
  14.  
  15. Helloworld(2);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement