Code covered by the BSD License  

Highlights from
proj

4.0

4.0 | 1 rating Rate this file 2 Downloads (last 30 days) File Size: 2.35 KB File ID: #7954

proj

by Daniel Ennis

 

01 Jul 2005 (Updated 01 Jul 2005)

Manage the multiple m-files of a project.

| Watch this File

File Information
Description

% PROJ opens,closes, modifies, or displays a projects contents.
% A project is generally a collection of matlab functions and scripts
% that are frequently opened together and worked on collectively.
% This function facilitates opening and closing the many files that
% comprise a project and has some basic project building tools. If you
% work on many projects at once this can be a convenient tool to
% re-establish the "working state" of a project and to put it away when you
% switch to work on something else.

MATLAB release MATLAB 7 (R14)
Tags for This File  
Everyone's Tags
Tags I've Applied
Add New Tags Please login to tag files.
Comments and Ratings (2)
01 Jul 2005 Michael Robbins

I'm working on something very similar but much more involved. Let me know if you'd like to help.

15 Jan 2007 D. Selters

Good function; just what I was looking for to switch from one project to another (and automatically load/unload m-scripts).

I believe it is missing the "load_structure" utility function which I cluged as follows:

function s = load_structure(projname);
    if exist([projname '.mat'], 'file') == 2
        tmp = load(projname);
        s = tmp.proj_data;
    else
        warning('proj.m - write error handler')
    end %if

return

Please login to add a comment or rating.
Tag Activity for this File
Tag Applied By Date/Time
development environment Daniel Ennis 22 Oct 2008 07:52:03
project manager Daniel Ennis 22 Oct 2008 07:52:03
modifies Daniel Ennis 22 Oct 2008 07:52:03
utilities Daniel Ennis 22 Oct 2008 07:52:03
development Daniel Ennis 22 Oct 2008 07:52:03

Contact us at files@mathworks.com