line plots in MatLab -- MatLab

line plots in MatLab -- MatLab

type of line plots

I list common line plots I know.

line plots

plot

plot3

stairs

errorbar

area

stackedplot

loglog

semilogx

semilogy

fplot

fplot3

fimplicit


type by the specified filter

2D

the following are about 2D plots.
plot
loglog
semilogx
semilogy
stairs
fplot
fimplicit

log

the following are plots about log plots.

loglog
semilogx
semilogy

details

I just only list a few plots.
More details on the matlab official website.

plot

common 2D line plot.

plots

common 3D line plot.

stairs

stair 2D plot.
a plot which looks like to stair.

loglog 

2D all axis log plot.
2D x-y axis log plot.
x and y axis are about log.

semilogx

2D x axis log plot.
x axis is about log.

semilogy

2D y axis log plot.
 y axis is about log.

fplot

function plot.
plot through given function.
You can throw a function and plot through  fplot.
    

Comments

Popular posts from this blog

How to hold plots in MatLab? - hold -- MatLab

How to check whether point is changed or not in MatLab? - ischange -- MatLab

Data distribution plots in MatLab -- MatLab