• 大小: 872B
    文件类型: .m
    金币: 1
    下载: 0 次
    发布日期: 2021-06-06
  • 语言: Matlab
  • 标签: 曲线绘制  

资源简介

绘制曲线,利用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

评论

共有 条评论