Rank: 54 based on 586 downloads (last 30 days) and 44 files submitted
photo

us

E-mail

Personal Profile:
Professional Interests:

 

Watch this Author's files

 

Files Posted by us View all
Updated   File Tags Downloads
(last 30 days)
Comments Rating
20 Jun 2010 Published MATLAB Files fdep: a pedestrian function dependencies finder FDEP dissects ML files and iteratively looks for all user defined functions used during runtime Author: us nested, path, files, function, depfun, mlint 68 39
  • 4.95238
5.0 | 21 ratings
20 Jun 2010 Published MATLAB Files farg: a pedestrian M-file parser showing all used functions' syntax parses an M-file searching for functions and prints their exact, literal syntax Author: us development environme..., argument list, script, function, nested, anonymous 10 3
  • 5.0
5.0 | 1 rating
01 Jun 2010 Screenshot cvar: a pedestrian variable name checker CVAR checks the names of variables for potential conflicts with know functions or built-ins Author: us variable, name, which, exist 0 0
27 May 2010 Screenshot vsize: a pedestrian variable decoder VSIZE determines the full anatomy for named or unnamed variables of any depth and complexity Author: us whos, ndims, size, numel, length, class 11 4
  • 5.0
5.0 | 4 ratings
08 May 2010 Screenshot yapp: a pedestrian Yet Another Parser Parser YAPP is a highly speed optimized input parser collecting unix-style option(s)/value(s) Author: us parser 2 0
Comments and Ratings by us View all
Updated File Comments Rating
02 Aug 2010 cprintf: a pedestrian ND array formatting and display utility cprintf converts an ND array or ND cell array to a 2D character array and - optionally - a table Author: us

hi cyberfrog

unfortunately, this is not possible...
you have to create the complete CELL in your loop and append it afterwards using the -fa option...
note: you could use the -Lc option to create the column labels at write-time...

us

22 Jul 2010 GetFullPath Full path name for partial or relative path Author: Jan Simon

jan

this should be corrected
- System.IO.FileInfo is a .NET component (available only in more recent ML versions)
- java.io.File is the java class

urs

21 Jun 2010 pdfapp: a pedestrian pdf concatenator PDFAPP appends PDF files to a new PDF file Author: us

thanks for your comments, mark

so far, we never ran into this problem...

a few thoughts
1) PDFAPP only creates the input to GHOSTSCRIPT and nothing else; in particular, it does not open/change/etc the PDF files...
2) hence, it all depends on how your GS version is handling your PDFs, which might be in a compressed format (just a guess)...

here's an example, which shows a reasonably sized output

     surf(peaks(64));
     print -dpdf -r600 ex_01.pdf;
     print -dpdf -r600 ex_02.pdf;
     pdfapp foo ex_01.pdf ex_02.pdf;
%{
PDFAPP> F:\usr\matlab\TMP\fex\ags\test\foo.pdf
    1 > F:\usr\matlab\TMP\fex\ags\test\ex_01.pdf
    2 > F:\usr\matlab\TMP\fex\ags\test\ex_02.pdf
PDFAPP> F:\usr\matlab\TMP\fex\ags\test\foo.pdf [260 kb]
%}
     ls -latr *.pdf
%{
-rw---a 133978 6-21-2010 9:42p ex_01.pdf
-rw---a 133978 6-21-2010 9:42p ex_02.pdf
-rw---a 266557 6-21-2010 9:43p foo.pdf
%}
     d=dir('ex_*.pdf');
     ds=sum([d.bytes])
% ds = 267956
% thus, in this case, the output is even slightly smaller...

us

17 Jun 2010 fdep: a pedestrian function dependencies finder FDEP dissects ML files and iteratively looks for all user defined functions used during runtime Author: us

andrew

unfortunately: no...
one of the reasons why the .EVAL. group is collected separately by fdep and a warning flag is displayed if any such construct is found...

which, in turn, is one of the reasons why one should follow these rules
- do NOT use EVAL
- use FEVAL with function handles, only
  note:
     feval(@sind,30)
  will correctly find the call to SIND...

sorry
us

03 Jun 2010 Seed generator using 'current' World Population count Generates a seed that could be used to set the state for random number generation in matlab. Author: Pranam Janney

please, remove this completely useless submission...

??? Undefined function or method 'read_specific_data' for input arguments of
type 'char'.

us

Comments and Ratings on us' Files View all
Updated File Comment by Comments Rating
06 Feb 2012 mtit: a pedestrian major title creator MTIT creates a major title in a figure with many axes Author: us Vahid

works nicely!

16 Jan 2012 fdep: a pedestrian function dependencies finder FDEP dissects ML files and iteratively looks for all user defined functions used during runtime Author: us Nilimb

very helpful and fast.

22 Dec 2011 fdep: a pedestrian function dependencies finder FDEP dissects ML files and iteratively looks for all user defined functions used during runtime Author: us Eric

Great function. Saves lots of time and headache. Much faster than depfun which I had to force quit to stop after 20 minutes.

23 Nov 2011 mtit: a pedestrian major title creator MTIT creates a major title in a figure with many axes Author: us Kolluru, Lakshmi

its really nice and helped me do what i wanted.

03 Oct 2011 fdep: a pedestrian function dependencies finder FDEP dissects ML files and iteratively looks for all user defined functions used during runtime Author: us Kearney, Kelly

This is an excellent function that I've used for years. However, the GUIs don't play nicely with multiple monitors. Because of the mix of normalized and absolute units used for various parts of the GUI, simply resizing the whole thing post-render isn't ideal (and I just discovered by accident that there are some buttons in the upper corner that I never knew existed in all my time using it). It would be nice if I could somehow tell it which portion of the screen to use (even if I had to hardcode that in my own version, but right now that seems to require changing several lines throughout the code, and I haven't tracked them all down).

Top Tags Applied by us
string, matrices, array, path, cell
Files Tagged by us View all
Updated   File Tags Downloads
(last 30 days)
Comments Rating
20 Jun 2010 Published MATLAB Files fdep: a pedestrian function dependencies finder FDEP dissects ML files and iteratively looks for all user defined functions used during runtime Author: us nested, path, files, function, depfun, mlint 68 39
  • 4.95238
5.0 | 21 ratings
20 Jun 2010 Published MATLAB Files farg: a pedestrian M-file parser showing all used functions' syntax parses an M-file searching for functions and prints their exact, literal syntax Author: us development environme..., argument list, script, function, nested, anonymous 10 3
  • 5.0
5.0 | 1 rating
01 Jun 2010 Screenshot cvar: a pedestrian variable name checker CVAR checks the names of variables for potential conflicts with know functions or built-ins Author: us variable, name, which, exist 0 0
27 May 2010 Screenshot vsize: a pedestrian variable decoder VSIZE determines the full anatomy for named or unnamed variables of any depth and complexity Author: us whos, ndims, size, numel, length, class 11 4
  • 5.0
5.0 | 4 ratings
08 May 2010 Screenshot yapp: a pedestrian Yet Another Parser Parser YAPP is a highly speed optimized input parser collecting unix-style option(s)/value(s) Author: us parser 2 0

Contact us at files@mathworks.com