Borrar filtros
Borrar filtros

if A=1:0.1:10 and B=1:4,T=exp(A/B) , is there anyway to plot a graph of T against A?

1 visualización (últimos 30 días)
if A=1:0.1:10 and B=1:4, T=exp(A/B) , since they are of matrices of different sizes, is there anyway to plot a graph of T against A such as using for loops?

Respuestas (2)

sixwwwwww
sixwwwwww el 29 de Oct. de 2013
Editada: sixwwwwww el 29 de Oct. de 2013
Dear Austin, you can do it as follows:
A = 1:0.1:10;
B = linspace(1, 4, numel(A))
T=exp(A./B);
plot(A, T), xlabel('A'), ylabel('T')
I hope it helps. Good luck!

Sean de Wolski
Sean de Wolski el 29 de Oct. de 2013
Editada: Sean de Wolski el 29 de Oct. de 2013
Use bsxfun to do the division. Here is a small example:
A = 1:0.1:10;
B = 1:4;
T = exp(bsxfun(@rdivide,A,B'));
plot(A,T)
Note, four lines have been drawn, the plot it just scaled to the very large values so the rest appear lumped at the bottom.

Categorías

Más información sobre Loops and Conditional Statements en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by