How can i get points table from output graph in matlab?
7 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
if true
% code
end
0 commentaires
Réponses (1)
TastyPastry
le 2 Nov 2015
p = plot(xValues,yValues);
myX = get(p,'xdata');
myY = get(p,'ydata');
2 commentaires
Walter Roberson
le 2 Nov 2015
Graphs do not generally have any PV or IV characteristics. It could be that the particular graph you are interested in has those characteristics, but we currently have no idea which graph you are looking at. "PV" has at least 89 known meanings.
Voir également
Catégories
En savoir plus sur Graph and Network Algorithms dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!