资源简介
绘制曲线,利用matlab 经典教程不错阿偶
代码片段和文件信息
%生成应力-应变曲线,应力-时间曲线
%第一列为时间,第二列为应变,第三列为应力。
clear;clc;
[filenamefilepath]=uigetfile(‘.txt‘‘Select stress-strain data‘);
file=[filepath filename];
fid=fopen(file‘rt‘);
if fid ==-1
errordlg( ‘Error opening the file‘‘error information‘);
end
%%%%%%% read column headers
%C_text = textscan(fid‘%s‘4‘delimiter‘‘ |‘);
%%%%%%%% read numeric data
%C_data0 = textscan(fid ‘%f %f %f
评论
共有 条评论