how can i combine two graph which is linear and semilogy into one graph by using legend,the input is same for the linear and log graph
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Jason Tan Jia Sheng
le 24 Déc 2021
Commenté : Jason Tan Jia Sheng
le 24 Déc 2021
Vg=[-2:2:10]
while A<=4
Id = Up*Cox/2*A*((Vg-Vth).^2);
f = semilogy(Vg,Id);
subplot(2,2,B),plotyy(Vg,Id,'- o k',Vg,f,'- x b');
hold on;
A=A*2;
B=B+1;
end
0 commentaires
Réponse acceptée
Chunru
le 24 Déc 2021
x = (1:10);
y1 = rand(10,1);
y2 = 10.^(3*randn(10,1));
yyaxis left
plot(x, y1, 'ro-')
yyaxis right
semilogy(x, y2, 'b*-')
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur 2-D and 3-D Plots dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!