Guest User

Untitled

a guest
May 21st, 2018
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. %this is for f.m
  2. function [x,y,z] = f(u,v)
  3. %UNTITLED2 Summary of this function goes here
  4. % Detailed explanation goes here
  5. x = u/sqrt(u^2+v^2+1);
  6. y = v/sqrt(u^2+v^2+1);
  7. z = 1/sqrt(u^2+v^2+1);
  8. end
Add Comment
Please, Sign In to add comment