How to read values from excel file with mobile matlab app?

4 ビュー (過去 30 日間)
Kalin Chuchuganov
Kalin Chuchuganov 2023 年 12 月 12 日
コメント済み: Kalin Chuchuganov 2023 年 12 月 13 日
Hi, I want to read values from Excel file with the Matlab mobile app but It seems to do not read correctly! With the same code on PC works fine! What can be the reason? filename = 'Acceleration.xls'; sheet = 'Raw Data'; xlRange = 'D:D'; columnD = xlsread(filename,sheet,xlRange)
  9 件のコメント
Walter Roberson
Walter Roberson 2023 年 12 月 13 日
Sorry, I overlooked the range too. readmatrix()
You will probably need
columnD = readmatrix(filename, 'sheet', sheet, 'Range', xlRange)
Kalin Chuchuganov
Kalin Chuchuganov 2023 年 12 月 13 日
Yes, and for removing the first elemnt I use: columnDD=columnD(2:end) and it works.

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

採用された回答

Mann Baidi
Mann Baidi 2023 年 12 月 12 日
Hi
I understand yow would like to extract values from an Excel file in MATLAB Mobile App.
I would suggest you use alternatives of "xlsread" as it is not recommended by the MATLAB since R2019a. Instead of this, you can try using the "readtable", "readmatrix" or "readcell" function.
For more information, you can take reference from the following link:
Hope this will help!
  1 件のコメント
Kalin Chuchuganov
Kalin Chuchuganov 2023 年 12 月 12 日
Thank you very much! 'readmatrix' works perfectly. If I may ask one more thing? The column I want to read from the Excel file has a title, and the number of data in it is variable. How can I manage to read from the second cell and read all the rest of the data from the column? Thanks in advance!

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

その他の回答 (0 件)

カテゴリ

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