replacing numbers with alphabets/letters in a matrix

조회 수: 2 (최근 30일)
ANINDYA GANGULY
ANINDYA GANGULY 2021년 11월 8일
댓글: ANINDYA GANGULY 2021년 11월 8일
I have a excel sheet (attached file) consiting of 4000 numbers (1 to 4000). I want to replace 1, 5, 9 ...3997 and 2, 6, 10...3998 with C and 3, 7, 11...3999 and 4,8, 12...4000 with H. Can a code be devised where this task can be performed such that the output file/data is represented in the same array/format as the given input? And can the code be made universal so that we can carry forth similar tasks with other arrays?
Looking forward for an answer and thank you for all your help.
Regards
J

채택된 답변

Akira Agata
Akira Agata 2021년 11월 8일
One possible straight-forward solution would be like this:
M = readmatrix('testfile_0.50.xlsx');
C = cell(size(M));
idx = ismember(M,[1:4:3997, 2:4:3998]);
C(idx) = {'C'};
idx = ismember(M,[3:4:3999, 4:4:4000]);
C(idx) = {'H'};
writecell(C,'output.xlsx');

추가 답변 (1개)

Walter Roberson
Walter Roberson 2021년 11월 8일
편집: Walter Roberson 2021년 11월 8일
filename = 'https://www.mathworks.com/matlabcentral/answers/uploaded_files/793759/testfile_0.50.xlsx';
outfile = "testout.xlsx";
data = readmatrix(filename);
newdata = cell(size(data));
mask = isnan(data);
newdata(mask) = {nan};
mask = ismember(mod(data,4), [1 2]);
newdata(mask) = {'C'};
mask = ismember(mod(data,4), [3 0]);
newdata(mask) = {'H'};
writecell(newdata, outfile);
%testing to see if the output looks ok
readback = readtable(outfile);
readback(10:20,:)
ans = 11×13 table
C C_1 C_2 Var4 Var5 Var6 Var7 Var8 Var9 Var10 Var11 Var12 Var13 _____ _____ _____ __________ ____ ____ ____ ____ ____ _____ _____ _____ _____ {'H'} {'C'} {'H'} {0×0 char} NaN NaN NaN NaN NaN NaN NaN NaN NaN {'C'} {'C'} {'H'} {0×0 char} NaN NaN NaN NaN NaN NaN NaN NaN NaN {'C'} {'C'} {'C'} {0×0 char} NaN NaN NaN NaN NaN NaN NaN NaN NaN {'C'} {'C'} {'C'} {0×0 char} NaN NaN NaN NaN NaN NaN NaN NaN NaN {'C'} {'C'} {'H'} {0×0 char} NaN NaN NaN NaN NaN NaN NaN NaN NaN {'C'} {'C'} {'H'} {0×0 char} NaN NaN NaN NaN NaN NaN NaN NaN NaN {'C'} {'C'} {'H'} {0×0 char} NaN NaN NaN NaN NaN NaN NaN NaN NaN {'C'} {'C'} {'H'} {'H' } NaN NaN NaN NaN NaN NaN NaN NaN NaN {'C'} {'C'} {'H'} {'H' } NaN NaN NaN NaN NaN NaN NaN NaN NaN {'C'} {'C'} {'H'} {'H' } NaN NaN NaN NaN NaN NaN NaN NaN NaN {'C'} {'C'} {'H'} {'H' } NaN NaN NaN NaN NaN NaN NaN NaN NaN
I tested on my system, and excel does show those 0x0 char and NaN entries as empty cells.

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by