Adding specific colors on a fig file
1 回表示 (過去 30 日間)
古いコメントを表示
Wissem-Eddine KHATLA
2024 年 4 月 7 日
コメント済み: Wissem-Eddine KHATLA
2024 年 4 月 7 日
Hello everyone,
Is it possible to add, directly in Matlab, some colors on specific zones of a fig file ?
For instance, if I want the area below a curve to be in a specific color and the area above with another one ?
Thank you for your help,
Sincerely.
0 件のコメント
採用された回答
Mann Baidi
2024 年 4 月 7 日
Hi,
As per the understanding of the question, you would like to add different background color for area above and area below the plotted line.
This can be done using the 'area' function in MATLAB. Here is an example for the same.
% Define constants
a = 0.1; % adjust this value to change the shape of the parabola
% Define range of y values
y = linspace(-10, 10, 100);
% Calculate corresponding x values
x = a * y.^2;
area(x)
You can explore more about the 'area' function by referring to the following link:
I hope this helps.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Annotations についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!