Microscopy Image Browser 2.91
MIB
Loading...
Searching...
No Matches
xlswrite3.m File Reference

XLSWRITE Stores numeric array or cell array in Excel workbook. More...

Functions

function [ success , message ] = xlswrite2 (file, data, sheet, range)
 
function  xlswrite3>cleaner (Excel, file)
 
function message = xlswrite3>activate_sheet (Excel, Sheet)
 
function newsheet = xlswrite3>addsheet (WorkSheets, Sheet)
 
function absolutepath = xlswrite3>abspath (partialpath)
 
function range = xlswrite3>calcrange (range, m, n)
 
function string = xlswrite3>index_to_string (index, first_in_range, digits)
 
function [ digits , first_in_range ] = xlswrite3>calculate_range (num_to_convert)
 
function s = xlswrite3>dec2base27 (d)
 
function d = xlswrite3>base27dec (s)
 
function messageStruct = xlswrite3>exceptionHandler (nArgs, exception)
 

Detailed Description

XLSWRITE Stores numeric array or cell array in Excel workbook.

Function Documentation

◆ xlswrite3>abspath()

function absolutepath = xlswrite3>abspath ( partialpath)

◆ xlswrite3>activate_sheet()

function message = xlswrite3>activate_sheet ( Excel,
Sheet )

◆ xlswrite3>addsheet()

function newsheet = xlswrite3>addsheet ( WorkSheets,
Sheet )

◆ xlswrite3>base27dec()

function d = xlswrite3>base27dec ( s)

◆ xlswrite3>calcrange()

function range = xlswrite3>calcrange ( range,
m,
n )

References n.

◆ xlswrite3>calculate_range()

function [ digits , first_in_range ] = xlswrite3>calculate_range ( num_to_convert)

◆ xlswrite3>cleaner()

function xlswrite3>cleaner ( Excel,
file )

◆ xlswrite3>dec2base27()

function s = xlswrite3>dec2base27 ( d)

◆ xlswrite3>exceptionHandler()

function messageStruct = xlswrite3>exceptionHandler ( nArgs,
exception )

◆ xlswrite3>index_to_string()

function string = xlswrite3>index_to_string ( index,
first_in_range,
digits )

◆ xlswrite2()

function [ success , message ] = xlswrite2 ( file,
data,
sheet,
range )

Examples:

SUCCESS = XLSWRITE('c:\matlab\work\myworkbook.xls',A,'A2:C4'); % will write A to
the workbook file, myworkbook.xls, and attempt to fit the elements of A into
the rectangular worksheet region, A2:C4. On success, SUCCESS will contain true,
while on failure, SUCCESS will contain false.
function x = A(y, j)
x = A(y,j)
Definition A.m:17
Note
The above functionality depends upon Excel as a COM server. In absence of Excel, ARRAY shall be written as a text file in CSV format. In this mode, the SHEET and RANGE arguments shall be ignored.
See also
xlsread, wk1write, csvwrite

References A(), and n.

Here is the call graph for this function: