Selecting a row of numbers clockwise around a matrix of values

1 回表示 (過去 30 日間)
Aramis
Aramis 2021 年 10 月 20 日
コメント済み: Image Analyst 2021 年 10 月 21 日
Hi people,
I have an excel file as a matrix of random values (10 rows by 16 columns). I would like to select the value of outer cells, countiniously in clockwise direction (as illustrated in photo starting with cell #1 and ending with cell #17) and paste it as a row of 48 values into a new excel file. My ultimate goal is reading mutiple files in a folder ,and paste the same string row by row in a single excel file.
I appreciate your help and answers for learning and understanding it.

回答 (1 件)

Image Analyst
Image Analyst 2021 年 10 月 20 日
mTop = m(1, :);
mLeft = m(2:end, end);
mBottom = fliplr(m(end, 1:end-1));
mRight = flipud(m(2:end-1, 1));
outerValues = [mTop(:); mLeft(:); mBottom(:); mRight(:)]
  2 件のコメント
Aramis
Aramis 2021 年 10 月 20 日
Thanks for your quick awesome reply. Is there any way to make it a bit expanded to read multiple excel files and make an output for all of them in a single file?
Image Analyst
Image Analyst 2021 年 10 月 21 日
Put that code into a function, and call it inside a loop over the files. See the FAQ:

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

カテゴリ

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

製品


リリース

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by