Highlight certain regions where the value goes to 0 in Stacked Plot
1 次查看(过去 30 天)
显示 更早的评论
Hi, can we highlight certain regions in stackplot where the value of a certain variable goes to zero.
I currently have
p1=stackedplot(final_log(:,["TC2","Ftot"]));
I want to highlight cerain areah where Ftot goes to Zero
Thank you.
4 个评论
Umar
2024-7-10
编辑:Walter Roberson
2024-7-10
Hi Bhargav,
One alternative approach to creating a stacked plot without using the 'hold' function is to utilize the 'bar' function in MATLAB. An example,
data = [10 20 30; 15 25 35; 5 10 15];
% Sample data for three groups
bar(data, 'stacked');
By using the 'bar' function with the 'stacked' parameter set to 'on', you can generate a stacked bar plot easily. This method allows you to display multiple sets of data stacked on top of each other, similar to a stacked plot. Please let me know if you have further questions.
回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Line Plots 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!