Is there a 100% stacked area chart in MALTAB?
Show older comments
I am trying to find any implementation or how to implement a 100% stacked area chart in MATLAB? Any ideas?
Accepted Answer
More Answers (4)
Todd Flanagan
on 25 Jan 2011
1 vote
You can use the AREA function:
Y = [1, 5, 3;
3, 2, 7;
1, 5, 3;
2, 6, 1];
area(Y)
grid on
colormap summer
set(gca,'Layer','top')
title 'Stacked Area Plot'
1 Comment
Todd Flanagan
on 25 Jan 2011
Jesse, I'm not sure this is what you want. This is justed stacked area, not 100% stacked, correct?
Prathveraj Shetty
on 16 Feb 2019
0 votes
hello,
i have one doubt. If i have a coordinate of a point and a black & white image(i.e., digital 0 or 1) how can get the distance of each pixel of the image from this point.
akshatha nayak
on 25 Mar 2019
0 votes
Today we had to show demo of project that time sir said u people need to capture real qorld image not the folder one how to do that to capture eye image any code pls
Cebastien Joel GUEMBOU SHOUOP
on 10 Apr 2019
0 votes
Thank you for the clear comment on that.
It help me too.
Categories
Find more on Color and Styling in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!