Mercurial > repos > public > sbplib
view +util/plotf.m @ 512:4ef2d2a493f1 feature/quantumTriangles
add H_xyz to hypsyst to compute H-norm
author | Ylva Rydin <ylva.rydin@telia.com> |
---|---|
date | Mon, 26 Jun 2017 19:23:19 +0200 |
parents | 48b6fb693025 |
children |
line wrap: on
line source
function plotf(f,a,b,opt) if ~exist('opt') opt = ''; end x = linspace(a,b); for i = 1:length(x) y(i) = f(x(i)); end plot(x,y,opt) end