Search Comments and Ratings

go

Comments and Ratings

   
Date File Comment by Comment Rating
29 Sep 2009 Graph package Graph package for molecular biologist Author: Kyaw Tun Ostadabbas, Sarah

Hi,

I'm using your tool for plotting EEG channels in matlab. Now I want to change the node placement to arrange them in the proper position as appeared in EEG cab. Any suggestion?

Thanks.

31 Aug 2009 Graph package Graph package for molecular biologist Author: Kyaw Tun meng, xiao

has anyone had success installing this toolbox with MATLAB v7.5 Release R2007b (on Win XP Pro)

I unzipped the files to the /toolbox/local/ folder and tried adding the new @graph folder to path-- however I get this message:

"Warning: Method directories not allowed in MATLAB path: ...."

Any pointers? Thanks.

26 Aug 2009 Graph package Graph package for molecular biologist Author: Kyaw Tun mezxl

has anyone had success installing this toolbox with MATLAB v7.5 Release R2007b (on Win XP Pro)

I unzipped the files to the /toolbox/local/ folder and tried adding the new @graph folder to path-- however I get this message:

"Warning: Method directories not allowed in MATLAB path: ...."

Even when I cd into the folder, Matlab can't seem to find the .m files to run (I'm trying I gg = graph(10);)

Any pointers? Thanks.

 

14 Aug 2009 Graph package Graph package for molecular biologist Author: Kyaw Tun santitissadeekorn, naratip

Does these coded work for directed, weighted graph?

22 Jan 2009 Graph package Graph package for molecular biologist Author: Kyaw Tun Kyaw

To calculate mocularity,

g = graph(adjacency_matrix)
m = modularity(g)

21 Oct 2008 Graph package Graph package for molecular biologist Author: Kyaw Tun Mishkovski, Igor

Hi,
I am interested in using the graph package for calculation of the modularity of a complex network. I work with adjacency matrix, but the input in modularity is in other format. So, can you tell me the input format of the network to calculate its modularity.
Thanks in advance,
Igor Mishkovski

14 Mar 2008 Graph package Graph package for molecular biologist Author: Kyaw Tun Kilpatrick, Jeff

BFS and shortestPath don't seem to work either. The former doesn't handle self-loops (which is why I tried this over the Bioinformatics toolbox to begin with) and the latter makes use of a non-existent function.

16 Jan 2008 Graph package Graph package for molecular biologist Author: Kyaw Tun Leach, Sonia

I believe there might be several errors in the code for computing the clustering coefficient in clusteringcoeff.m

Currently lines of the code read:
        for k1 = 1:a
        for k2 = k1+1:a
            if adj(k1,k2) | adj(k2,k1)
                E = E + 1;
            end
        end
    end

But
 1. if the nested for loops are meant to cover all possible pairs, technically it should be 'for k1 = 1:(a-1)' though if the original matrix did not have self-loops, this will not affect the result. The check for non-self loops in 'neighbours' only removes the self-loop of the node, not self-loops among its neighbors so if the adjacency matrix has self-loops, this code would be incorrect - unless I am mistaken about the calculation of the clustering coefficient? Given that the calculation counts the 'denominator' as 'all possible pairs' (a(a-1)/2), this makes me think that the authors assume no self loops in the graph. In that case, the code is incorrect.
  3. a is meant to be the number of neighbors and k1, k2 to enumerate over the SET of neighbors, not be the IDENTITY of the neighbors so the line
    'if adj(k1,k2) | adj(k2,k1)'
should instead read
     if adj(neighbours(k1), neighbours(k2)) | adj(neighbours(k2), neighbours(k1))
to access the actual indices of the neighbors, not just the nodes 1:a....

I believe the correct version of this segment of code should be:
    for k1 = 1:(a-1)
        for k2 = k1+1:a
            if adj(neighbours(k1),neighbours(k2)) | adj(neighbours(k2),neighbours(k1))
                E = E + 1;
            end
        end
    end

29 Sep 2007 Icon image editor Create icon image for MATLAB GUI toolbar. Author: Kyaw Tun bee lan, ng

Thanks, that is my final project...

06 Jul 2007 Graph package Graph package for molecular biologist Author: Kyaw Tun h, saad

Hi,

I am interested to do some experiments using
your Graph package for molecular biologist.
I you appreciate some examples on how to uses it.
Regards,
saad

24 Jun 2007 Graph package Graph package for molecular biologist Author: Kyaw Tun roshdy, khalid roshdy

please i need to know how to iniliaze the graph and entering the adject matrices and use all the package, plesae give me some examples about this

26 May 2007 Game of Life Play life genesis game and compete with computer. Good example for interactive GUI. Author: Kyaw Tun Smith, John

19 Feb 2007 Icon image editor Create icon image for MATLAB GUI toolbar. Author: Kyaw Tun Staurt, John

Great stuff, the best way to put icons into the GUI

23 Aug 2006 Icon image editor Create icon image for MATLAB GUI toolbar. Author: Kyaw Tun Briot, Jérôme

The code fails under R12.1
Please update the informations about the Matlab release.

04 Jun 2006 Icon image editor Create icon image for MATLAB GUI toolbar. Author: Kyaw Tun sepidbar, ebrahim

icon

03 Aug 2005 Icon image editor Create icon image for MATLAB GUI toolbar. Author: Kyaw Tun Azman, Rafy

Thanks! I have been looking for this for my Final Year Project!!

26 Jan 2005 Icon image editor Create icon image for MATLAB GUI toolbar. Author: Kyaw Tun Hammond, Keith

Thanks for posting this. I have been looking for something similar to this so that i can creat icons for my uitoolbar, on my science project.

25 Mar 2004 Icon image editor Create icon image for MATLAB GUI toolbar. Author: Kyaw Tun Bicak, Altug

good tool,however may be some extra drawing utilities such as line,circle.. can be cool,
thanx..

 

MATLAB Central Terms of Use

NOTICE: Any content you submit to MATLAB Central, including personal information, is not subject to the protections which may be afforded information collected under other sections of The MathWorks, Inc. Web site. You are entirely responsible for all content that you upload, post, e-mail, transmit or otherwise make available via MATLAB Central. The MathWorks does not control the content posted by visitors to MATLAB Central and, does not guarantee the accuracy, integrity, or quality of such content. Under no circumstances will The MathWorks be liable in any way for any content not authored by The MathWorks, or any loss or damage of any kind incurred as a result of the use of any content posted, e-mailed, transmitted or otherwise made available via MATLAB Central. Read the complete Terms prior to use.

Contact us at files@mathworks.com