superimpose a line of slope (-5/3) on a log-log graph
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hello everybody,
Do you know how to draw a straight line with a certain slope on a log-log graph please?
Here what I want to do:
Thank you in advance,
0 comentarios
Respuestas (1)
Davide Masiello
el 20 de Abr. de 2022
Editada: Davide Masiello
el 20 de Abr. de 2022
See example below
clear,clc
x = [1e1,1e4];
slope = -3/5;
offset = 1;
y = slope*x+offset;
loglog(x,y,'--r')
2 comentarios
Ver también
Categorías
Más información sobre Graphics Object Properties en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!