236 links
  • Zertrin's links
  • Home
  • Login
  • RSS Feed
  • Tag cloud
  • Picture wall
  • Daily
Links per page: 20 50 100
page 1 / 1
3 results tagged matlab x
  • YouTube thumbnail
    A Better Default Colormap for Matplotlib | SciPy 2015 | Nathaniel Smith and Stéfan van der Walt - YouTube
    An interesting talk about the making of a new default colormap for matplotlib.
    Thu Nov 19 14:56:47 2015 - permalink -
    - https://www.youtube.com/watch?v=xAoljeRJ3lU
    color colormap light matlab python rgb scilab
  • Java class access pitfalls | Undocumented Matlab
    [Condensed mirror of the pitfalls, see the page for details]

    1. Forgetting or mistyping the package name: Since Java is case-sensitive, the package name must be exact.

    2. Mistyping the class name. As with package names, Java class names are also case-sensitive. Beware of cases of O/0 (capital-”o” vs. the digit zero), and I/l/1 (capital-”i” vs. lowercase “L” vs. the digit 1). Also note whether the class name includes the underscore (“_”) character.
         
    3. Using a Java class that was compiled using a newer JDK major-version than the JVM used in Matlab.

    4. Forgetting to update the Java classpath.

    5. Dependency #1: A class that depends on any other class that is not on the current Java classpath (either dynamic or static).

    6. Dependency #2: A class on the static Java classpath that depends on another class which is on the dynamic Java classpath. All static classes must depend only on other static classes, since the static classpath is processed before the dynamic one, when the JVM is launched at Matlab startup.
         
    7. Non-public class – Matlab can only access public classes. If the class is private, protected or has package visibility (by not specifying any visibility modifier at all), then the class would not be loadable by Matlab, only by other Java classes. So remember to add the public keyword in the definition of all the Java classes that you wish to directly use in Matlab.
         
    8. Non-public constructor – Matlab can only create objects for non-static classes that have public constructors. If all the class constructors are non-public, then Matlab cannot create a class instance object. In such a case we would get a misleading error message, that at least hints that the problem is with the constructor.
    Mon Jun 1 14:09:12 2015 - permalink -
    - http://undocumentedmatlab.com/blog/java-class-access-pitfalls
    java matlab programming
  • MIT Strategic Engineering Research Group - Matlab Tools for Network Analysis
    Matlab Tools for Network Analysis (2006-2011)

    This toolbox was first written in 2006. The last version, posted here, is from November 2011. These routines are useful for someone who wants to start hands-on work with networks fairly quickly, explore simple graph statistics, distributions, simple visualization and compute common network theory metrics. The code is not object-oriented, and should be easy to use, read and improve upon. There is some overlap with the grTheory toolbox and the MatlabBGL library published on Matlab Central. Different authorship is indicated in the header. No code is perfect so please contact gergana at alum dot mit.edu if you notice errors or have pointers to better routines.

    This code is published under the BSD license. The license text is also available at the end of this page.
    Wed Jun 25 15:19:18 2014 - permalink -
    - http://strategic.mit.edu/downloads.php?page=matlab_networks
    analysis graph matlab network topo tree
Links per page: 20 50 100
page 1 / 1
Shaarli - The personal, minimalist, super-fast, no-database delicious clone by the Shaarli community - Help/documentation