From: meriadoc on
Hi all

I was lookint at this figure which was done in matlab

http://mirlab.org/jang/books/audioSignalProcessing/example/dp/output/dtw1Plot01.png


I'm trying to understand how to position the plot in the left and the plot
just under the square matrix in that particular position.
I'm not sure it is something done with the subplot command.
Any idea? I've seen this kind of plot several times (with two time series
and their distance matrix in that configuration) but not been able to
replicate so far

thanks

--


questo articolo e` stato inviato via web dal servizio gratuito
http://www.newsland.it/news segnala gli abusi ad abuse(a)newsland.it


From: the cyclist on
ccdd(a)ff.it (meriadoc) wrote in message <hvbin0$dgi$1(a)news.newsland.it>...
> Hi all
>
> I was lookint at this figure which was done in matlab
>
> http://mirlab.org/jang/books/audioSignalProcessing/example/dp/output/dtw1Plot01.png
>
>
> I'm trying to understand how to position the plot in the left and the plot
> just under the square matrix in that particular position.
> I'm not sure it is something done with the subplot command.
> Any idea? I've seen this kind of plot several times (with two time series
> and their distance matrix in that configuration) but not been able to
> replicate so far
>
> thanks
>
> --
>
>

Yes, this can be done with the subplot command. Then set the 'Position" property of each individual axis. For example,

>> subplot(2,2,1), plot(1:10)
>> set(gca,'position',[0.4 0.2 0.1 0.4])

and so on for each subplot.
From: meriadoc on
the cyclist ha scritto:

>

> Yes, this can be done with the subplot command. Then set the 'Position"
property of each individual axis. For example,

> >> subplot(2,2,1), plot(1:10)
> >> set(gca,'position',[0.4 0.2 0.1 0.4])

> and so on for each subplot.

thanks, it works fine

--


questo articolo e` stato inviato via web dal servizio gratuito
http://www.newsland.it/news segnala gli abusi ad abuse(a)newsland.it