好的,所以我的工作是为了一个工程项目而且我多次与我的老师交谈但没有取得多大成功。代码读取来自文本文件中的旋转编码器的数据。我的问题是如何制作两组具有年龄和性别的数组,并将其链接到每个读入的文本文件。例如,第一个文本文件来自一个10岁的女孩;旋转曲柄并将数据输出到文本文件。我如何编码,以便我可以将第一个文本文件分配给年龄和性别?到目前为止,我的代码是任何帮助。
%% ME 208 Project Group 21
clear; close all; clc;
%Constants
dt=.1;
%Translate Data
mass = 10; %values are in units of Kilograms
radius = 1; %values are in units of meters
inertia = mass*radius^(2);
for ii=1:2
%File Name Variable
filename=['sub_' num2str(ii) '.txt'];
%Data is Collected
Data1=dlmread(filename,'\t',0,0);
%Times for data
t1=dt:dt:length(Data1)*dt;
%Vel
[ang_vel1, ang_acc1]=dxdt_d2xdt2(Data1,2,dt);
torq1 = inertia*ang_acc1;
%Calculations of parameters
meanrt1(ii) = rms(torq1);
maxrt1(ii) = max(torq1);
end
%Plot
figure(1);plot(t1,torq1,t2,torq2); grid minor;