フィルターのクリア

how i can plot orbit of vibration of a rotating shaft with its center

9 ビュー (過去 30 日間)
tarek hussein
tarek hussein 2022 年 10 月 6 日
編集済み: KSSV 2022 年 10 月 6 日
clear all
close all
x1=BD(1:10000,1 ) % the vibration vector readings in x direction
y1=BD(10000:15000,2) % the vibration vector readings in y direction
figure
p1= plot(x1,y1)
xlabel(' journal Disp in X direction');
ylabel('journal Disp in Y direction');
grid on

回答 (1 件)

KSSV
KSSV 2022 年 10 月 6 日
編集済み: KSSV 2022 年 10 月 6 日
x1=BD(1:10000,1 ) % the vibration vector readings in x direction
y1=BD(10001:20000,2) % the vibration vector readings in y direction
figure
p1= plot(x1,y1)
xlabel(' journal Disp in X direction');
ylabel('journal Disp in Y direction');
grid on
OR
x1=BD(1:10000,1 ) % the vibration vector readings in x direction
y1=BD(1:10000,2) % the vibration vector readings in y direction
figure
p1= plot(x1,y1)
xlabel(' journal Disp in X direction');
ylabel('journal Disp in Y direction');
grid on

カテゴリ

Help Center および File ExchangeAcoustics, Noise and Vibration についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by