n×m行列のdouble型データを繰り返し文を使わずにvtkファイルに書き出す方法
显示 更早的评论
x=[1,1,1,1,1];
y=[1,2,3,4,5];
z=[2,4,6,8,10];
xyz=[x',y',z'];
filename='data.vtk';
fid = fopen(filename, 'w');
data.vtkに上記の変数xyzである5行3列を書き込む方法を教えていただけますでしょうか.
采纳的回答
更多回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 標準ファイル形式 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!