convert plot(x,y) to plot(y(ind))
Afficher commentaires plus anciens
Hi,
I am trying to convert plot(x,y) to plot(y(ind)) So i am interesting in getting the indices of x which gives me y?
Thanks,
Réponses (2)
Azzi Abdelmalek
le 24 Juin 2015
Modifié(e) : Azzi Abdelmalek
le 24 Juin 2015
Just do this
plot(y)
6 commentaires
Muhannad
le 24 Juin 2015
Modifié(e) : Azzi Abdelmalek
le 24 Juin 2015
Azzi Abdelmalek
le 24 Juin 2015
Modifié(e) : Azzi Abdelmalek
le 24 Juin 2015
Indices of x are from 1 to numel(x). Is this right?
Muhannad
le 24 Juin 2015
Muhannad
le 24 Juin 2015
Azzi Abdelmalek
le 24 Juin 2015
x = cumsum(hann(100));
y = linspace(-1,1,100);
plot(x,y);
idx=1:10:100
set(gca,'xtick',x(idx))
nxt=arrayfun(@num2str,idx,'un',0)
set(gca,'xticklabel',nxt)
Muhannad
le 24 Juin 2015
Purushottama Rao
le 24 Juin 2015
g=interp1(y,x,0.5)
g gives you the x value corresponding to the given y value (0.5).
Use a for loop to find out the entire range.
Hope this is what you are looking for
3 commentaires
Muhannad
le 24 Juin 2015
Purushottama Rao
le 24 Juin 2015
Modifié(e) : Purushottama Rao
le 24 Juin 2015
x = cumsum(hann(100));
y = linspace(-1,1,100);
plot(x,y);
for k=1:length(y)
g(k)=interp1(y,x,y(k));
end
The speed looks to be ok. Ofcourse i do not know whether you are using the same x and y or not.
Muhannad
le 24 Juin 2015
Catégories
En savoir plus sur Programming dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!