Giter VIP home page Giter VIP logo

inequalityplot's Introduction

inequalityplot

Plot inequalities in 2-D space.

inequalityplot(f,x,y,color,resolution) plots the inequality f(x,y) in region x(1) <= x <= x(2) and y(1) <= y <= y(2) using specified color. For multiple inequalities, use & in f. Default color is [0.5,0.75,1]. Default resolution is 400.

Example 1: A colored ellipse.

  ellipse = @(x,y) x.^2/4+y.^2<=1;
  inequalityplot(ellipse,[-3,3],[-3,3])

Example 2: A colored triangle.

  triangle = @(x,y) x>0 & x<1 & y>0 & y<x;
  inequalityplot(triangle,[-1,2],[-1,2],'magenta')

Example 3: Area under a Gaussian curve.

  g = @(x) 1/sqrt(2*pi)*exp(-x.^2/2);
  inequalityplot(@(x,y) y<g(x) & y>0 & x>-2 & x<1,[-3,3],[0,0.5],'c')
  hold on; fplot(g,[-3,3],'LineWidth',1); hold off

Author: Ildeberto de los Santos Ruiz, [email protected]

View inequalityplot on File Exchange

inequalityplot's People

Contributors

isantosruiz avatar

Stargazers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.