フィルターのクリア

how to use XLSWRITE function in the forloop?

1 回表示 (過去 30 日間)
hp
hp 2017 年 6 月 10 日
編集済み: Walter Roberson 2017 年 6 月 11 日
how to use xlswrite function in the for loop ,allowing for loop to write data into excel sheet in every iteration of the for loop.
syntax of xlswrite for specifying the range is given as follows,but how to specify the row range ,(if using for loop)
xlswrite(filename, M, 'range')
writes matrix M to a rectangular region specified by range in the first worksheet of the file filename. Specify range using one of the following quoted string formats:A cell designation, such as 'D2', to indicate the upper left corner of the region to receive the matrix data.Two cell designations separated by a colon, such as 'D2:H4', to indicate two opposing corners of the region to receive the matrix data.
The range 'D2:H4' represents the 3-by-5 rectangular region between the two corners D2 and H4 on the worksheet.
  1 件のコメント
hp
hp 2017 年 6 月 11 日
編集済み: Walter Roberson 2017 年 6 月 11 日
THANK YOU SO MUCH ....
ITS WORKING..
filename = 'C:\Program Files\MATLAB\R2007b\work\colorfeatures{j}.xlsx';
xlswrite(filename,colorMoments(1, :),'sheet1',['A' num2str(j) ':' 'F' num2str(j)]);

サインインしてコメントする。

回答 (1 件)

Walter Roberson
Walter Roberson 2017 年 6 月 10 日
You can use dec2base27() from the File Exchange to convert numeric columns into Excel column letter notation.
  1 件のコメント
hp
hp 2017 年 6 月 10 日
but how to specify the row range.. i have 12 images ... the extracted features of each image is 6 values ... i need to store 12 rows of values in same excel sheet , every time 'forloop' computes the features and it should store each feature in 1 to 12 rows of same sheet . how to do it.. highlighted area of the below image shows the row range... but for loop is unable to upload 12 rows of data into same excel sheet.how to do it.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeSpreadsheets についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by