How to switch to this graph? Mathematical question

1 回表示 (過去 30 日間)
Elia Paini
Elia Paini 2021 年 11 月 3 日
コメント済み: Star Strider 2021 年 11 月 6 日
Hi, I have a bit complicated question about a way to obtain a graph from a set of data.
I have a code that return a solution of three variables, related to solving a system of several equations.
For example, Matlab output is like the following:
a = [1 0.2 0.2];
b = [0 0.4 0.4];
c = [0 0.4 0.4]; which are plotted on distance x = [0 0.5 1];
a, b, c represent three volume fractions, with the constraint that sum over a column is 1 (on the left of the figure).
However, for an easier understanding, I need a graphic representation showing not the absolute values of those fractions, but their distribution (on the right).
I know it's likely a "mathematical question" than "Matlab question", but I don't know how to proceed.
I need an appliable strategy on any solution, not this one in particular.
Thanks for your help!!

採用された回答

Star Strider
Star Strider 2021 年 11 月 3 日
Try this —
x = [0 0.5 1];
a = [1 0.2 0.2];
b = [0 0.4 0.4];
c = [0 0.4 0.4];
figure
patch([x flip(x)], [c zeros(size(c))], 'g', 'FaceAlpha',0.75)
hold on
patch([x flip(x)], [b ones(size(a))], 'r', 'FaceAlpha',0.75)
patch([x flip(x)], [b flip(a+c)], 'b', 'FaceAlpha',0.75)
hold off
text([1 1 1]*0.8, [0.2 0.5 0.8], compose('%c',['c','a','b']), 'FontWeight','bold')
.
  4 件のコメント
Elia Paini
Elia Paini 2021 年 11 月 6 日
Yes, this is exactly what I need! It works for any vectors, and the display order is optional.
Thank you!!
Star Strider
Star Strider 2021 年 11 月 6 日
As always, my pleasure!
.

サインインしてコメントする。

その他の回答 (1 件)

Alan Stevens
Alan Stevens 2021 年 11 月 3 日
Try:
plot(x,c,x,1-b)
  1 件のコメント
Elia Paini
Elia Paini 2021 年 11 月 3 日
編集済み: Elia Paini 2021 年 11 月 3 日
This is correct, there's only one problem.
This can be coupled only to this easy example. Actually, solution can be very complex, also with 50 points for every variable. The example I considered is very easy, with only three points and regular lines.
My question is not about that problem, I asked for a single code which can be applied to every case.
I hope you understand me.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeMATLAB についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by