Guest User

Untitled

a guest
Jan 19th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MatLab 0.21 KB | None | 0 0
  1. function [ output_args ] = rysuj_wykres(fun, min, max)
  2. %UNTITLED3 Summary of this function goes here
  3. %   Detailed explanation goes here
  4. ezplot(fun, [min, max])
  5. x = min
  6. exp = eval(fun)
  7. text(min, exp, fun)
  8. end
Add Comment
Please, Sign In to add comment