How to store plot function in one single variable
Mostrar comentarios más antiguos
is it possible to store plot function in one variable with example like plot(a,b,c,d,e,..f) with dimension a is 996x1,b is996x1,c is -20,d is 996x1 likewise and with some numeric values .I want to store like that
data=plot( somefunction here) (a,b,c,d,e,..f) it is possible in any manner ?
data=plotSINR(a,b,c,d...f) .
I want to store the plot variables in single variable so that .
Respuestas (1)
madhan ravi
el 27 de Jun. de 2020
C = {a, b, c, d, e, f};
plot(C{:})
1 comentario
prateek bhadauria
el 27 de Jun. de 2020
Categorías
Más información sobre Annotations en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!