How to plot three curves on same plot with same X axis but different Y axes in MATLAB? [closed]?

Since you have several variables, you may to consider to scale them to some common reference, for example summing up. Like: A= A/ sum(A); B= B/ sum(B); C= C/ sum(C); or A= A/ sum(abs(A)); B= B/ sum(abs(B)); C= C/ sum(abs(C)); or A= A/ sum(A^2); B= B/ sum(B^2); C= C/ sum(C^2); And then just plot them.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions