How to export the decimal and negative data to excel
3 ビュー (過去 30 日間)
古いコメントを表示
Rohan Maharjajn
2017 年 1 月 29 日
コメント済み: Walter Roberson
2017 年 1 月 30 日
clc
clear
hold all
% Plot cylinder
[X,Y,Z] = cylinder(5,100);
[TRI,v]= surf2patch(X,Y,Z);
patch('Vertices',v,'Faces',TRI,'facecolor',[1 1 0.5],'facealpha',0.5);
view(3);axis square; grid on; title('Enclosed Cylinder')
format long
xlswrite('myfile4.xlsx', X, ['A1:A'
num2str(length(X))]);
xlswrite('myfile4.xlsx', Y, ['B1:B' num2str(length(Y))]);
xlswrite('myfile4.xlsx', Z, ['C1:C' num2str(length(Z))]);
hold off
I get #N/A after third column .
0 件のコメント
採用された回答
Walter Roberson
2017 年 1 月 29 日
I suggest you use
xlswrite('myfile4.xlsx', [X(:), Y(:), Z(:)]);
2 件のコメント
Walter Roberson
2017 年 1 月 30 日
Communication with Catia is discussed in http://www.mathworks.com/matlabcentral/answers/15228-link-catia-to-matlab and a few other posts.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Annotations についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!