필터 지우기
필터 지우기

How to plot them together and get the equasions of each of them ?

조회 수: 1 (최근 30일)
Tomer Segev
Tomer Segev 2020년 10월 13일
alpha=fitlm(RD,Wi);
plot(alpha);
r2=alpha.Rsquared.Adjusted;
r1=alpha.Rsquared.Ordinary;
xlabel('RD'),ylabel('ISCO');
beta=fitlm(RD,Wlr);
a=plot(beta);
xlabel('RD'),ylabel('LR');
rsqered=beta.Rsquared.Adjusted;
rsq=beta.Rsquared.Ordinary;
hold on
X=plotAdded(alpha);
hold off
% I want to know how to plot them together, with different colors, and to have a legeng for them bot.
% I also want to know the equation that describe them
% Can someone help me please??

답변 (0개)

카테고리

Help CenterFile Exchange에서 Legend에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by