replace cell content of excel from matlab script

조회 수: 45 (최근 30일)
Deepan Muthusamy
Deepan Muthusamy 2021년 7월 7일
댓글: Mathieu NOE 2021년 7월 7일
i have an excel sheet of data having (400x256). The columnsn of each row B,D, F, F+2, F+4,..... till 256 having value either 80 or 90. i want to replace those values with "pass" or "fail".
I am using matlab 2018a. so i am using xlsread/xlswrite funtions.
I tried the below code but it is not working...
I read the excel to a variable in matlab
data = xlsread("filename.xlsx","sheet").
then tried changing that particular cell,
if data(1,2) == 80
data(1,2) = "pass"
end
then write back the data to excel.
xlswrite("filename.xlsx", data, "sheet")
but i don't see "pass" in B1 cell instead seeing an empty cell.

채택된 답변

Mathieu NOE
Mathieu NOE 2021년 7월 7일
hello
this is my suggestion - convert your data (numeric double) to cell array first
and more robust if statement as numerical round off can cause some issues it you do "strict" comparison with the given value (here 80), so use a tolerance to account for this
data = xlsread('filename.xlsx','sheet');
cellarray = num2cell(data);
tol = 1e-12;
% then tried changing that particular cell,
if abs(cellarray{1,2} - 80) < tol
cellarray{1,2} = "pass"
end
% then write back the data to excel.
xlswrite('filename.xlsx', cellarray, 'sheet')

추가 답변 (1개)

Günter Gsellmann
Günter Gsellmann 2021년 7월 7일
In your case you are creating a NaN, as your "data" is only numeric.

카테고리

Help CenterFile Exchange에서 Spreadsheets에 대해 자세히 알아보기

제품


릴리스

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by