Using contour as input for a function
Mostra commenti meno recenti
Is it possible to use a contour plot as an input for a function? If so how?
Risposte (1)
Azzi Abdelmalek
il 19 Lug 2016
You can use the handle of your plot. Example
function y=your_function(h)
y=get(h)
To call the function
handle_h=plot(sin(1:100))
y=your_function(gcf)
Categorie
Scopri di più su Contour Plots in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!