Azzera filtri
Azzera filtri

Unable to find file , load file to xl file .

2 visualizzazioni (ultimi 30 giorni)
Md. Mohidul Islam
Md. Mohidul Islam il 13 Gen 2023
Modificato: Stephen23 il 14 Gen 2023
  1 Commento
Stephen23
Stephen23 il 14 Gen 2023
Modificato: Stephen23 il 14 Gen 2023
Do NOT store user files in the installation directory of any application!
'C:\Program Files\MATLAB\R2022b\bin\my_excel_file.xls' % !!! DO NOT use this location !!!
Your Windows should protect the installation folder, so whatever you are doing ... is best avoided.

Accedi per commentare.

Risposte (1)

Voss
Voss il 13 Gen 2023
Two things:
1) You're using
y1 = xlsread('F:\matlab\bin_my_excel_file');
% ^ underscore
but 'bin' is a directory and the file is (supposedly) 'my_excel_file', so that should be
y = xlsread('F:\matlab\bin\my_excel_file');
% ^ backslash
2) Specify the file name completely, including the extension, either .csv or .xls. I don't know which one you mean because they both exist.
% which file?
% this one:
y1 = xlsread('F:\matlab\bin\my_excel_file.csv')
% or this one:
y1 = xlsread('F:\matlab\bin\my_excel_file.xls')
Also, readmatrix, readtable, and readcell are recommended over xlsread in R2022b.
You can pick the one that makes the most sense for the class of the variable that should represent the contents of the file (a matrix, a table, or a cell array, respectively).
  4 Commenti
Walter Roberson
Walter Roberson il 13 Gen 2023
Spostato: Voss il 13 Gen 2023
y1=xlsread('C:\Program Files\MATLAB\R2022b\bin\my_excel_file.xls');
We recommend against storing files in the MATLAB execution directory. You would need to be running with elevated access rights in order to be permtited to write files there.
Voss
Voss il 13 Gen 2023
@Md. Mohidul Islam: Do you have another question about the code you posted? If you want someone to be able to run it, they'd need to have the required files, including:
C:\Program Files\MATLAB\R2022b\bin\my_excel_file.xls
I:\BIOM_Signal_processing\Hw5\ECGsignal_1.mat
I:\BIOM_Signal_processing\Hw5\ECGsignal_1.xls

Accedi per commentare.

Tag

Prodotti


Release

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by