ヒストグラムの時間変化グラフの出力
Show older comments
1秒間でN=1000点の値を時系列で記録した電圧信号があると仮定した場合、 x軸は時間、y軸は電圧、z軸は1秒間の信号を0.1秒毎に10分割したヒストグラムの度数を色で、 平面に表現する方法はありませんか?
以下が元信号です。
Fs = 1/1000 ; % サンプリング周波数
t = (0:1:999) * Fs; % 時間軸
y = sin(2*pi*1*t); % 信号
使っているversionは以下です。
--------------------------------------------------------------------------------------------------
MATLAB バージョン: 9.2.0.556344 (R2017a)
MATLAB ライセンス番号: DEMO
オペレーティング システム: Microsoft Windows 10 Pro Version 10.0 (Build 14393)
Java バージョン: Java 1.7.0_60-b19 with Oracle Corporation Java HotSpot(TM) 64-Bit Server VM mixed mode
--------------------------------------------------------------------------------------------------
MATLAB バージョン 9.2 (R2017a)
3 Comments
Walter Roberson
on 21 Jul 2017
Approximate translation:
Assuming that there is a voltage signal recorded in time series of N = 1000 points in one second, the x axis is time, the y axis is voltage, and the z axis is histogram obtained by dividing the signal of 1 second every 10 seconds Is there a way to express the frequency of the frequency on a plane in color?
The following is the original signal.
Fs = 1/1000;% sampling frequency
T = (0: 1: 999) * Fs;% Time axis
Y = sin (2 * pi * 1 * t);% signal
The version you are using is below.
masahiro kida
on 22 Jul 2017
Accepted Answer
More Answers (0)
Categories
Find more on データ分布プロット in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!