readmatrix for single Excel cells

22 visualizaciones (últimos 30 días)
Abdolkarim Mohammadi
Abdolkarim Mohammadi el 26 de Dic. de 2019
Comentada: dpb el 1 de Jun. de 2020
My data is stored on a single Excel file, where each sheet containts several numeric matrixes. I imported all the variables successfully to MATLAB using readmatrix. However, 1x1 matrices are imported incorrectly. I use the following syntax:
MFOA = readmatrix (Path, 'Sheet', Sheet, 'Range', 'H142:H142');
Instead of loading only the cell H142, readmatrix loads a column vector starting from H142 down to the last row of the rectangular portion of the spreadsheet. How can I get the correct results?
  2 comentarios
Vit Krcal
Vit Krcal el 19 de Mayo de 2020
I have the same issue, have you found out any new solution or reasoning?
dpb
dpb el 19 de Mayo de 2020
It's a bug; the workarounds are simple enough, but never hurts to submit additional bug report to prod TMW along in fixing stuff...

Iniciar sesión para comentar.

Respuesta aceptada

dpb
dpb el 26 de Dic. de 2019
Don't have recent-enough version here to test to confirm, but if is so and reproducible on latest release, that would appear to be a bug. Report to TMW.
Workarounds:
  1. Just follow above with MFOA=MFOA(1); to throw away everything but first element, or
  2. Use venerable xlsread to read the single cell cases (I'd use 1. btw).
  2 comentarios
ziyue zhong
ziyue zhong el 1 de Jun. de 2020
Then how to deal with that if I use write,and I wanna write a single value in a single cell
dpb
dpb el 1 de Jun. de 2020
With what, specifically? If there's only one value, doesn't it work correctly?

Iniciar sesión para comentar.

Más respuestas (0)

Etiquetas

Productos


Versión

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by