Printing out zeros as empty character for a tex file

조회 수: 3 (최근 30일)
yp78
yp78 2021년 8월 18일
댓글: yp78 2021년 8월 18일
I have a double variable named `myData' that contains zero entries. I loop through the elements of myData as follows.
How can I print out the zeros as empty character for a tex file that I am producing?
% Current code
myData=([1,2,0;0,5,6;7,0,9]);
nCol = 4;
format = '%.2f';
for i = 1:size(data,1) % 1 to rows
if i==1
fprintf([' \\\\ \\midrule \\multicolumn{' num2str(nCol) '}{l}{\\bfseries m} \\\\ \\midrule \\\\ \n']);
end
fprintf([num2str(i) ' & ' num2str(myData(i,1), format)...
' & ' num2str(myData(i,2), format) ...
' & ' num2str(myData(i,3), format) '\\\\ \n']);
end
\\ \midrule \multicolumn{4}{l}{\bfseries m} \\ \midrule \\
1 & 1.00 & 2.00 & 0.00\\ 2 & 0.00 & 5.00 & 6.00\\ 3 & 7.00 & 0.00 & 9.00\\
I don't want to see zeros in the ouputs above. The desired outputs:
\\ \midrule \multicolumn{4}{l}{\bfseries m} \\ \midrule \\
1 & 1.00 & 2.00 & \\
2 & & 5.00 & 6.00\\
3 & 7.00 & & 9.00\\

채택된 답변

David Hill
David Hill 2021년 8월 18일
s=sprintf([num2str(i) ' & ' num2str(myData(i,1), format)...
' & ' num2str(myData(i,2), format) ...
' & ' num2str(myData(i,3), format) '\\\\ \n']);
fprintf(regexprep(s,'0.00',''));
  댓글 수: 1
yp78
yp78 2021년 8월 18일
Thanks so much @David Hill !
It saved enormous time to organise the outputs!

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Characters and Strings에 대해 자세히 알아보기

제품


릴리스

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by