ActAccの1波長を抽出してpeak-to-peakを求めたいです.この作業を5回ずつそれぞれ別の周期で求めたいです.
조회 수: 2 (최근 30일)
이전 댓글 표시
clear;
close all;
%データ読み込み
Dat = readmatrix('230518_pmac_f10.txt');
t= Dat(:,1); %時間データをtに入れる
ActAcc= Dat(:,2); % ActAcc 実 加速(cts)
CmdAcc= Dat(:,3); % CmdPAcc 指令加速度(cts)
%エンコーダ:23bitを4逓倍
ActAcc_mm= ( 4/(2^23) )* ActAcc; %mmに変換
CmdAcc_mm= ( 4/(2^23) )* CmdAcc; %mmに変換
%位置プロット
plot( t,ActAcc_mm, t,CmdAcc_mm )
axis( [5 6 -7.315 -7.21] )
%軸ラベル
xlabel('Time s')
ylabel('Acceleration mm/s2')
%凡例
legend( 'ActAcc', 'CmdAcc')
댓글 수: 0
답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 記述統計에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!