Code covered by the BSD License
-
quakeGUI(varargin)
QUAKEGUI M-file for quakeGUI.fig
-
cleanUpVarArgServletDemo
Cleans all output files from compileVarArgServletDemo.m and reduces the
-
compileVarArgServletDemo
% This function will compile the Rankine Java demo.
-
createfigure(data_real1, data...
CREATEFIGURE(X1,Y1,DATA_REAL1,DATA_IMAG1,DATA_ABS1,DATA_IND1)
-
createfigure1(data_real1, dat...
CREATEFIGURE1(X1,Y1,DATA_REAL1,DATA_IMAG1,DATA_ABS1,DATA_IND1)
-
createfigureHess(x1, y1, data...
CREATEFIGURE2(X1,Y1,DATA_REAL1,DATA_IMAG1,DATA_ABS1,DATA_IND1)
-
getFigurePixels(f, rotation, ...
-
getVarArgServletDemoSettings
% This function sets the build options for the Rankine Java demo.
-
importfile(fileToRead1)
IMPORTFILE(FILETOREAD1)
-
varargexample(Data, varargin)
VARARGEXAMPLE used varargin and varargout for demonstration purposes
-
vsunitcircle(data_real1, data...
VSUNITCIRCLE(DATA_REAL1,DATA_IMAG1)
-
vsunitcircle(data_real1, data...
VSUNITCIRCLE(DATA_REAL1,DATA_IMAG1)
-
vsunitcircle(data_real1, data...
VSUNITCIRCLE(DATA_REAL1,DATA_IMAG1)
-
VarArg Java Servlet Example
-
figureFrame.html
-
View all files
from
Application Deployment with MATLAB (July 2007)
by David Forstot
Presentation and demos from the Webinar "Application Deployment with MATLAB" (July 26th 2007)
|
| importfile(fileToRead1)
|
function importfile(fileToRead1)
%IMPORTFILE(FILETOREAD1)
% Imports data from the specified file
% FILETOREAD1: file to read
% Auto-generated by MATLAB on 21-Aug-2007 10:44:52
% Import the file
rawData1 = importdata(fileToRead1);
% For some simple files (such as a CSV or JPEG files), IMPORTDATA might
% return a simple array. If so, generate a structure so that the output
% matches that from the Import Wizard.
[unused,name] = fileparts(fileToRead1); %#ok
newData1.(genvarname(name)) = rawData1;
% Create new variables in the base workspace from those fields.
vars = fieldnames(newData1);
for i = 1:length(vars)
assignin('base', vars{i}, newData1.(vars{i}));
end
|
|
Contact us at files@mathworks.com