-
Notifications
You must be signed in to change notification settings - Fork 166
Description
Line Plots:
(All line plots generated using MATLAB 2021a)
plot
- plot(X,Y)
- plot(XDatetime,YDatetime) - issue: Datetime/duration format not supported #162 (comment)
- plot(X,Y,LineSpec) - issue: LineSpec input argument not working correctly when using 2-D plots #187 (comment)
- plot(X1,Y1,...,Xn,Yn)
- plot(X1,Y1,LineSpec1,...,Xn,Yn,LineSpecn) - issue: LineSpec input argument not working correctly when using 2-D plots #187 (comment)
- plot(Y)
- plot(__, Name,Value) - issue: Non-working features (Name-Value Arguments and Figures Properties) #164 (comment)
plot3
- plot3(x,y,z)
- plot3(X,Y,Z,LineSpec)
- plot3(X1,Y1,Z1,...,Xn,Yn,Zn)
- plot3(X1,Y1,Z1,LineSpec1,...,Xn,Yn,Zn,LineSpecn)
- plot3(___,Name,Value)
- plotting multiple plots on same figure using
tiledlayout()
- issue: tiledlayout() not working: Not plotting multiple plots separately on same figure using plot3() #165 (comment) - plot3(XDatetime,YDatetime, ZDatetime) - issue: Datetime/duration format not supported using plot3() #166 (comment)
stairs
- stairs(Y)
- stairs(X,Y)
- Plot Multiple Data Series
- stairs(___,LineSpec) - issue: LineSpec input argument not working correctly when using 2-D plots #187 (comment)
- stairs(___,Name,Value) - issue: Non-working features (Name-Value Arguments and Figures Properties) #164 (comment)
errorbar
None errorbar()
variation is working - issue: #168 (comment)
- errorbar(y,err)
- errorbar(x,y,err)
- errorbar(x,y,neg,pos)
- errorbar(___,ornt)
- errorbar(x,y,yneg,ypos,xneg,xpos)
- errorbar(___,LineSpec)
- errorbar(___,Name,Value)
Datetime and Duration objects aren't supported either
- errorbar(XDatetime,YDatetime, ZDatetime) - issue: Datetime/duration format not supported #162 (comment)
area
None area()
variation is working - issue: #169 (comment)
- area(Y)
- area(X,Y)
- Create Area Plot with Multiple Curves
- area(___,basevalue)
- area(___,Name,Value)
stackedplot
None stackedplot()
variation is working - issue: #170 (comment)
- stackedplot(tbl)
- stackedplot(tbl,vars)
- stackedplot(___,'XVariable',xvar)
- stackedplot(X,Y)
- stackedplot(Y)
- stackedplot(___,LineSpec)
- stackedplot(___,Name,Value)
- stackedplot(parent,___)
loglog
- loglog(X,Y)
- loglog(X,Y,LineSpec) - issue: LineSpec input argument not working correctly when using 2-D plots #187 (comment)
- loglog(X1,Y1,...,Xn,Yn)
- loglog(X1,Y1,LineSpec1,...,Xn,Yn,LineSpecn) - issue: LineSpec input argument not working correctly when using 2-D plots #187 (comment)
- loglog(Y)
- loglog(Y,LineSpec) - issue: LineSpec input argument not working correctly when using 2-D plots #187 (comment)
- loglog(___,Name,Value) - issue: Non-working features (Name-Value Arguments and Figures Properties) #164 (comment)
semilogx
- semilogx(Y)
- semilogx(Y,LineSpec) - issue: LineSpec input argument not working correctly when using 2-D plots #187 (comment)
- semilogx(X,Y)
- semilogx(X,Y,LineSpec) - issue: LineSpec input argument not working correctly when using 2-D plots #187 (comment)
- semilogx(X1,Y1,...,Xn,Yn)
- semilogx(X1,Y1,LineSpec1,...,Xn,Yn,LineSpecn) - issue: LineSpec input argument not working correctly when using 2-D plots #187 (comment)
- semilogx(___,Name,Value) - issue: Non-working features (Name-Value Arguments and Figures Properties) #164 (comment)
semilogy
- semilogy(Y)
- semilogy(Y,LineSpec) - issue: LineSpec input argument not working correctly when using 2-D plots #187 (comment)
- semilogy(X,Y)
- semilogy(X,Y,LineSpec) - issue: LineSpec input argument not working correctly when using 2-D plots #187 (comment)
- semilogy(X1,Y1,...,Xn,Yn)
- semilogy(X1,Y1,LineSpec1,...,Xn,Yn,LineSpecn) - issue: LineSpec input argument not working correctly when using 2-D plots #187 (comment)
- semilogy(___,Name,Value) - issue: Non-working features (Name-Value Arguments and Figures Properties) #164 (comment)
fplot
None fplot()
variation is working - issue: #172 (comment)
- fplot(f)
- fplot(f,xinterval)
- fplot(funx,funy)
- fplot(funx,funy,tinterval)
- fplot(___,LineSpec)
- fplot(___,Name,Value) - issue:
fplot3()
None fplot3()
variations is working - issue: #173 (comment)
- fplot3(funx,funy,funz)
- fplot3(funx,funy,funz,tinterval)
- fplot3(___,LineSpec)
- fplot3(___,Name,Value)
fimplicit()
None of fimplicit()
variations is working - issue: #174 (comment)
- fimplicit(f)
- fimplicit(f,interval)
- fimplicit(___,LineSpec)
- fimplicit(___,Name,Value)
Scatter and Bubble Charts
(All charts generated using MATLAB 2021a)
scatter
- scatter(x,y)
- scatter(x,y,sz) - issue: Marker size not being consistent with MATLAB's scale on scatter plots #175 (comment)
- scatter(x,y,sz,c)
- scatter(___,'filled') - issue: Default 'filled' argument not working correctly #176 (comment)
- scatter(___,mkr) - issue: Changing marker symbol on scatter plots not supported #177 (comment)
- scatter(___,Name,Value) - issue: Non-working features (Name-Value Arguments and Figures Properties) #164 (comment)
scatter3
None of scatter3()
variations is working - issue: #191 (comment)
- scatter3(X,Y,Z)
- scatter3(X,Y,Z,S)
- scatter3(X,Y,Z,S,C)
- scatter3(___,'filled')
- scatter3(___,markertype)
- scatter3(___,Name,Value)
bubblechart
None bubblechart()
variations is working - issue: #178 (comment)
- bubblechart(x,y,sz)
- bubblechart(x,y,sz,c)
- bubblechart(___,Name,Value)
bubblechart3
None bubblechart3()
variations is working - issue: #179 (comment)
- bubblechart3(x,y,sz)
- bubblechart3(x,y,sz,c)
- bubblechart3(___,Name,Value)
swarmchart
None of swarmchart()
variations is presenting the jittering factor from the function. The data is being stacked on the corresponding value without any jittering - issue: #184 (comment)
- swarmchart(x,y)
- swarmchart(x,y,sz) - issue: Size variation not working using swarmchart #180 (comment)
- swarmchart(x,y,sz,c) - issue: Color variation not working using swarmchart #181 (comment)
- swarmchart(___,mkr) - issue: Marker symbol variation not working using swarmchart #182 (comment)
- swarmchart(___,'filled') - issue: Default 'filled' argument not working correctly #176 (comment)
- swarmchart(___,Name,Value) - issue: Non-working features (Name-Value Arguments and Figures Properties) #164 (comment)
- Categorical data not supported - issue: Categorical data not supported #183 (comment)
swarmchart3()
None of swarmchart3()
variations is working - issue: #185 (comment)
- swarmchart3(x,y,z)
- swarmchart3(x,y,z,sz)
- swarmchart3(x,y,z,sz,c)
- swarmchart3(___,mkr)
- swarmchart3(___,'filled')
- swarmchart3(___,Name,Value)
- Categorical data not supported - issue: Categorical data not supported #183 (comment)
spy
Y-axis is being inverted - issue: #186 (comment)
- spy(S)
- spy(S,LineSpec) - issue: LineSpec input argument not working correctly when using 2-D plots #187 (comment)
- spy(___,MarkerSize) - issue - MarkerSize input argument not working correctly when using spy() #188 (comment)
Data Distribution Plots
(All charts generated using MATLAB 2021a)
histogram()
- histogram(X)
- histogram(X,nbins) - issue: Specifying number of bins not supported #197 (comment)
- histogram(X,edges) - issue: - issue: Specifying edges limit not supported #196 (comment)
- histogram('BinEdges',edges,'BinCounts',counts) issue: Specifying edges limit not supported #196 (comment) and Specifying number of bins not supported #197 (comment)
- histogram(C) - issue: Categorical data (and BarWidth Name-Value Argument) not supported in histogram() #198 (comment)
- histogram(C,Categories) - issue: Categorical data (and BarWidth Name-Value Argument) not supported in histogram() #198 (comment)
- histogram('Categories',Categories,'BinCounts',counts) - issue: Categorical data (and BarWidth Name-Value Argument) not supported in histogram() #198 (comment) and Specifying number of bins not supported #197 (comment)
- histogram(___,Name,Value) - issue: Categorical data (and BarWidth Name-Value Argument) not supported in histogram() #198 (comment)
histogram2()
None of histogram2()
variations is working - issue: #193 (comment)
- histogram2(X,Y)
- histogram2(X,Y,nbins)
- histogram2(X,Y,Xedges,Yedges)
- histogram2('XBinEdges',Xedges,'YBinEdges',Yedges,'BinCounts',counts)
- histogram2(___,Name,Value)
pie()
All pie features work properly but rendering isn't corresponding to MATLAB's way of printing the figure - issue: #194 (comment)
- pie(X)
- pie(X,explode)
- pie(X,labels)
- pie(X,explode,labels)
Also, there's an issue with the legend when plotting multiple charts on the same figure - issue: #195 (comment)
pie3()
Every chart using pie3()
is presenting rendering issues - issue: #199 (comment)
- pie3(X)
- pie3(X,explode)
- pie3(...,labels)
- Plotting multiple pie charts - issue: Multiple 3-D pie charts not working properly #200 (comment)
scatterhistogram()
None of scatterhistogram()
variations is working - issue: #201 (comment)
- scatterhistogram(tbl,xvar,yvar)
- scatterhistogram(tbl,xvar,yvar,'GroupVariable',grpvar)
- scatterhistogram(xvalues,yvalues)
- scatterhistogram(xvalues,yvalues,'GroupData',grpvalues)
- scatterhistogram(___,Name,Value)
- scatterhistogram(parent,___)
parallelplot()
None of parallelplot()
variation is working - issue: #205 (comment)
- parallelplot(tbl)
- parallelplot(tbl,'CoordinateVariables',coordvars)
- parallelplot(___,'GroupVariable',grpvar)
- parallelplot(data)
- parallelplot(data,'CoordinateData',coorddata)
- parallelplot(___,'GroupData',grpdata)
- parallelplot(___,Name,Value)
- parallelplot(parent,___)
plotmatrix()
- plotmatrix(X,Y) - issue: Visual/separation problems when using plotmatrix() #206 (comment)
- plotmatrix(X) - issue: Correlation matrix not working properly when using plotmatrix(X) #207 (comment)
- plotmatrix(___,LineSpec) - issue LineSpec input argument not working correctly when using 2-D plots #187
Discrete Data Plots
(All charts generated using MATLAB 2021a)
bar()
In some cases, issues with the x-axis are happening- issue: #208 (comment)
- bar(y)
- bar(x,y)
- bar(___,width) - issue: Bar Width parameter not working on bars charts #210 (comment)
- bar(___,style)
- bar(___,color) - issue: Color parameter not working on bars charts #209 (comment)
- bar(___,Name,Value) - issue: Non-working features (Name-Value Arguments and Figures Properties) #164
- Negative values on stacked bars - issue: Issues when using negative data on bar graphs #211 (comment)
- bar(c,y) - issue: Categorical data not supported #183
- Different charts (stacked and non-stacked) on same figure - issue: Issues when plotting stacked and non-stacked bar graphs on same figure #212 (comment)
barh()
- barh(y)
- barh(x,y)
- barh(___,width)
- barh(___,style)
- barh(___,color)
- barh(___,Name,Value) - issue: Non-working features (Name-Value Arguments and Figures Properties) #164
- Plotting multiple series - issue: Problems with spacing between series on bar charts #230 (comment)
- Different charts (stacked and non-stacked) on same figure - issue: Issues when plotting stacked and non-stacked bar graphs on same figure #212 (comment)
bar3()
Rendering issues: #232 (comment)
- bar3(Z)
- bar3(Y,Z)
- bar3(...,width)
- bar3(...,style)
- bar3(...,color) - issue: Rendering issues with bar3 #232 (comment)
bar3h()
Same rendering issues as in bar3()
- issue: #232 (comment)
- bar3h(Y)
- bar3h(Z,Y)
- bar3h(...,width)
- bar3h(...,style)
- bar3h(...,color) - issue: Rendering issues with bar3 #232 (comment)
pareto()
Axes issues: - issue: #233 (comment)
- pareto(Y)
- pareto(Y,names)
- pareto(Y,X)
- pareto(...,threshold)
stem()
None of stem variations is working - issue: #257 (comment)
x-axis issue not being plotted: #234 (comment)
- stem(Y)
- stem(X,Y)
- stem(___,'filled') - issue: 'filled' argument not supported when using stem() #235 (comment)
- stem(___,LineSpec)
- stem(___,Name,Value) - issue: Non-working features (Name-Value Arguments and Figures Properties) #164
##stem3()
None of stem3()
variations is working correctly - issue: #236 (comment)
- stem3(Z)
- stem3(X,Y,Z)
- stem3(___,'filled')
- stem3(___,LineSpec)
- stem3(___,Name,Value)
Geographic Plots
(All charts generated using MATLAB 2021a)
geoplot()
None of geoplot()
variations is working - issue: #237 (comment)
- geoplot(lat,lon)
- geoplot(lat,lon,LineSpec)
- geoplot(lat1,lon1,...,latN,lonN)
- geoplot(lat1,lon1,LineSpec1,...,latN,lonN,LineSpecN)
- geoplot(___,Name,Value)
geoscatter()
None of geoscatter()
variations is working - issue: #238 (comment)
- geoscatter(lat,lon)
- geoscatter(lat,lon,A)
- geoscatter(lat,lon,A,C)
- geoscatter(___,M)
- geoscatter(___,'filled')
- geoscatter(___,Name,Value)
##geobubble()
None of geobubble()
variations is working - issue: #239 (comment)
- geobubble(tbl,latvar,lonvar)
- geobubble(lat,lon)
- geobubble(lat,lon,sizedata)
- geobubble(lat,lon,sizedata,colordata)
- geobubble(___,Name,Value)
Polar Plots
(All charts generated using MATLAB 2021a)
polarplot()
None of polarplot()
variations is working - issue: #240 (comment)
- polarplot(theta,rho)
- polarplot(theta,rho,LineSpec)
- polarplot(theta1,rho1,...,thetaN,rhoN)
- polarplot(theta1,rho1,LineSpec1,...,thetaN,rhoN,LineSpecN)
- polarplot(rho)
- polarplot(rho,LineSpec)
- polarplot(Z)
- polarplot(Z,LineSpec)
- polarplot(___,Name,Value)
polarhistogram()
None of polarhistogram()
variations is working - issue: #241 (comment)
- polarhistogram(theta)
- polarhistogram(theta,nbins)
- polarhistogram(theta,edges)
- polarhistogram('BinEdges',edges,'BinCounts',counts)
- polarhistogram(___,Name,Value)
polarscatter()
None of polarscatter()
variations is working - issue: #242 (comment)
- polarscatter(th,r)
- polarscatter(th,r,sz)
- polarscatter(th,r,sz,c)
- polarscatter(___,mkr)
- polarscatter(___,'filled')
- polarscatter(___,Name,Value)
polarbubblechart()
None of polarbubblechart()
variations is working - issue: #243 (comment)
- polarbubblechart(theta,rho,sz)
- polarbubblechart(theta,rho,sz,c)
- polarbubblechart(___,Name,Value)
compass()
None of compass()
variations is plotting the polar axes - issue: #244 (comment)
- compass(U,V)
- compass(Z)
- compass(___,LineSpec)
- Rotating compass plot - issue: Not possible to rotate compass() plots #245 (comment)
ezpolar():
None of ezpolar()
variations is plotting the polar axes - issue: #244 (comment)
- ezpolar(fun)
- ezpolar(fun,[a,b]) - issue (not able to see axes limits): compass() and ezpolar() not plotting polar axes #244 (comment)
Contour Plots
(All charts generated using MATLAB 2021a)
contour()
countour()
is creating filled plots when it shouldn't- issue: #251 (comment)
- contour(Z)
- contour(X,Y,Z)
- contour(___,levels) - issue: Levels argument not working #246 (comment)
- contour(___,LineSpec) - issue: LineSpec argument not working on contour plots #252
- contour(___,Name,Value) - issue: Non-working features (Name-Value Arguments and Figures Properties) #164
contourf()
- contourf(Z)
- contourf(X,Y,Z)
- contourf(___,levels) - issue: Levels argument not working #246 (comment)
- contourf(___,LineSpec) - issue: LineSpec argument not working on contour plots #252
- contourf(___,Name,Value) - issue: Non-working features (Name-Value Arguments and Figures Properties) #164
contour3()
None of contour3()
is working - issue: #247 (comment)
- contour3(Z)
- contour3(X,Y,Z)
- contour3(___,levels) - issue: Levels argument not working #246 (comment)
- contour3(___,LineSpec)
- contour3(___,Name,Value)
fcontour()
None of fcontour()
variations is working - issue: #248 (comment)
- fcontour(f)
- fcontour(f,xyinterval)
- fcontour(___,LineSpec)
- fcontour(___,Name,Value)
Vector Fields
(All charts generated using MATLAB 2021a)
quiver()
None of quiver()
variations is workin - issue: #253 (comment)
- quiver(X,Y,U,V)
- quiver(U,V)
- quiver(___,scale)
- quiver(___,LineSpec)
- quiver(___,LineSpec,'filled')
- quiver(___,Name,Value)
quiver3()
None of quiver() variations is working - issue: #254 (comment)
- quiver3(X,Y,Z,U,V,W)
- quiver3(Z,U,V,W)
- quiver3(___,scale)
- quiver3(___,LineSpec)
- quiver3(___,LineSpec,'filled')
- quiver3(___,Name,Value)
feather()
- feather(U,V)
- feather(Z)
- feather(___,LineSpec)
Surface and Mesh Plots
(All charts generated using MATLAB 2021a)
surf()
Colors and grid not matching - issue: #255 (comment)
- surf(X,Y,Z)
- surf(X,Y,Z,C) - issue: Color argument not working on surface plots #258 (comment)
- surf(Z)
- surf(Z,C) - issue: Color argument not working on surface plots #258 (comment)
- surf(___,Name,Value) - issue: No Name-Value argument is working on surface plots #262 (comment)
surfc()
None of surfc()
variations is working correctly - issue: #259 (comment).
Colors and grid not matching - issue: #255 (comment)
- surfc(X,Y,Z)
- surfc(X,Y,Z,C) - issue: Color argument not working on surface plots #258 (comment)
- surfc(Z)
- surfc(Z,C) - issue: Color argument not working on surface plots #258 (comment)
- surfc(___,Name,Value) - issue: No Name-Value argument is working on surface plots #262 (comment)
surfl()
None of surfl() variations is working correctly- issue: #260 (comment)
Colors and grid not matching - issue: #255 (comment)
- surfl(X,Y,Z)
- surfl(Z)
- surfl(___,'light')
- surfl(___,s)
- surfl(X,Y,Z,s,k)
ribbon()
Colors and grid not matching - issue: #255 (comment)
- ribbon(Y)
- ribbon(X,Y)
- ribbon(X,Y,width)
pcolor()
- pcolor(C) - issue: pcolor() default colors and grid not matching #264 (comment)
- pcolor(X,Y,C) - issue: pcolor(X,Y,C) not working correctly #263 (comment)
- Specifying different types of grids - issue: Grid transformations with pcolor() #265 (comment)
fsurf()
None of fsurf()
variations is working - issue:
#266 (comment)
- fsurf(f)
- fsurf(f,xyinterval)
- fsurf(funx,funy,funz)
- fsurf(funx,funy,funz,uvinterval)
- fsurf(___,LineSpec)
- fsurf(___,Name,Value)
fimplicit3()
None of fimplicit3()
variations is working - issue: #267 (comment)
- fimplicit3(f)
- fimplicit3(f,interval)
- fimplicit3(___,LineSpec)
- fimplicit3(___,Name,Value)
mesh()
Colors and grid not matching - issue: #255 (comment)
- mesh(X,Y,Z)
- mesh(Z)
- mesh(Z,C) - issue: Color argument not working on surface plots #258 (comment)
- mesh(___,C) - issue: Color argument not working on surface plots #258 (comment)
- mesh(___,Name,Value) - issue: No Name-Value argument is working on surface plots #262 (comment)
meshc()
Same issue as in surfc()
- issue: #259 (comment).
- meshc(X,Y,Z)
- meshc(Z)
- meshc(___,C) - issue: Color argument not working on surface plots #258 (comment)
- meshc(___,Name,Value) - issue: No Name-Value argument is working on surface plots #262 (comment)
meshz()
Colors and grid not matching - issue: #255 (comment)
- meshz(X,Y,Z)
- meshz(X,Y,Z,C) - issue: Color argument not working on surface plots #258 (comment)
- meshz(Z)
- meshz(Z,C) - issue: Color argument not working on surface plots #258 (comment)
- meshz(___,Name,Value) - issue: No Name-Value argument is working on surface plots #262 (comment)
waterfall()
None of waterfall()
variations is working correctly - issue: #268 (comment)
- waterfall(X,Y,Z)
- waterfall(X,Y,Z,C) - issue: Color argument not working on surface plots #258 (comment)
- waterfall(Z)
- waterfall(Z,C) - issue: Color argument not working on surface plots #258 (comment)
fmesh()
None of fmesh()
variations is working - issue #269
- fmesh(f)
- fmesh(f,xyinterval)
- fmesh(funx,funy,funz)
- fmesh(funx,funy,funz,uvinterval)
- fmesh(___,LineSpec)
- fmesh(___,Name,Value)
Volume Visualization
streamline()
- streamline(X,Y,Z,U,V,W,startx,starty,startz) - issue: streamline() not working correctly #305 (comment)
streamslice()
- [ ]streamslice(X,Y,Z,U,V,W,startx,starty,startz) - issue: streamslice() and streamparticles() not working correctly #306 (comment)
streamparticles()
issue: #307 (comment)
streamribbon()
Default colors not matching - issue: #309 (comment)
- streamribbon(X,Y,Z,U,V,W,startx,starty,startz)
streamtube()
Colors and grid not matching - issue: #310 (comment)
- streamtube(X,Y,Z,U,V,W,startx,starty,startz)
coneplot()
Cones not matching - issue: #311 (comment)
- coneplot(X,Y,Z,U,V,W,Cx,Cy,Cz)
slice()
None of slice()
variations is working correctly - issue: #312 (comment)
- slice(X,Y,Z,V,xslice,yslice,zslice)
- slice(V,xslice,yslice,zslice)
- slice(___,method) - issue: method argument not working on slice() #313 (comment)
Animations
(All charts generated using MATLAB 2021a)
animatedline()
None ofanimatedline()
variations is working - issue: #276 (comment)
- an = animatedline
- an = animatedline(x,y)
- an = animatedline(x,y,z)
- an = animatedline(___,Name,Value)
comet()
None of comet()
variations is working - issue: #277 (comment)
- comet(y)
- comet(x,y)
- comet(x,y,p)
- comet(ax,x,y,p)
comet3()
None of comet3()
variations is working - issue: #278 (comment)
- comet3(z)
- comet3(x,y,z)
- comet3(x,y,z,p)
- comet3(ax,x,y,z,p)
Images
(All charts generated using MATLAB 2021a)
image()
Not matching default colors - issue: #280 (comment)
- image(C)
- image(x,y,C) - issue: Image placement not working when using image(x,y,C) #281
- image('CData',C)
- image('XData',x,'YData',y,'CData',C)
- image(___,Name,Value) - issue: Non-working features (Name-Value Arguments and Figures Properties) #164
- image from file - issue: Image from JPG file not working correctly #283 (comment)
- Add Image to Axes in 3-D View - issue: Adding Image to Axes in 3-D View not working properly #284 (comment)
imagec()
Not matching default colors - issue: #280 (comment)
- imagesc(C)
- imagesc(x,y,C) - issue: Image placement not working when using image(x,y,C) #281
- imagesc('CData',C)
- imagesc('XData',x,'YData',y,'CData',C)
- imagesc(___,Name,Value) - issue: Non-working features (Name-Value Arguments and Figures Properties) #164
- imagesc(___,clims) - issue: clims argument not working on imagesc() #285 (comment)