When a safe a csv file I can not see numbers instead symbols

조회 수: 1 (최근 30일)
DulceEien
DulceEien 2021년 7월 24일
답변: Chunru 2021년 7월 24일
Hello,
I'm doing some multiplication that s the reson I'm saving the file again as csv file, but when I open it, I can see the results, instead symbols. Do you know what is wrong?
clear all
clc
addpath('Function')
[beamcracks] = importfile('Data\beamcracks.csv', 2, 12);
[beamcracks] = extentscore(beamcracks);
tabla = beamcracks(:,:);
writetable(tabla,'condition.csv')
save ('condition.csv', 'tabla')
in the variables look fine but in the csv file no

채택된 답변

Chunru
Chunru 2021년 7월 24일
remove the last line: save ('condition.csv', 'tabla'). You have already generate the .csv file in previous line.

추가 답변 (0개)

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by