import numpy as np
import scipy.signal as signal
import matplotlib.pyplot as plt
# 波数範囲(例: 100-400 cm?1)
x = np.linspace(100, 400, 1000)
# 共通して出るピークの位置
common_peaks_true = [200, 300]
# 各スペクトルのデータを作成
spectra = []
peak_positions = []
for i in range(3):
# 共通ピークの生成
spectrum = sum(np.exp(-((x - p) / 5)**2) for p in common_peaks_true)
# 各スペクトルごとに異なるランダムピークを追加
num_random_peaks = np.random.randint(2, 5) # ランダムピークの数
random_peaks = np.random.uniform(150, 350, num_random_peaks) # 150-350 cm?1の範囲にランダム配置
spectrum += sum(np.exp(-((x - p) / 5)**2) for p in random_peaks)
# ランダムなノイズを追加
spectrum += np.random.normal(0, 0.05, len(x))
# ピーク検出
peaks, _ = signal.find_peaks(spectrum, height=0.2)
peak_positions.append(x[peaks])
spectra.append(spectrum)
# 共通ピークの検出(±1 cm?1 の範囲で一致するピークを抽出)
tolerance = 0.6
common_peaks_detected = set(peak_positions[0])
for peaks in peak_positions[1:]:
common_peaks_detected = {p for p in common_peaks_detected if any(abs(p - q) < tolerance for q in peaks)}
# 結果のプロット
plt.figure(figsize=(8, 5))
for i, spectrum in enumerate(spectra):
plt.plot(x, spectrum, alpha=0.6, label=f"Spectrum {i+1}")
# 共通ピークを強調表示
for p in common_peaks_detected:
plt.axvline(p, color='pink', linestyle='--', label="Common Peak" if p == list(common_peaks_detected)[0] else "")
plt.legend()
plt.xlabel("Wavenumber (cm?1)")
plt.ylabel("Intensity")
plt.title("Detected Common Peaks with Random Peaks")
plt.show()
print("共通ピークの位置:", sorted(common_peaks_detected))
###Find_Peakを使わない
import numpy as np
import matplotlib.pyplot as plt
# 波数範囲(例: 100-400 cm?1)
x = np.linspace(100, 400, 1000)
# 共通して出るピークの位置
common_peaks_true = [200, 300]
# 各スペクトルのデータを作成
spectra = []
peak_positions = []
for i in range(3):
# 共通ピークの生成
spectrum = sum(np.exp(-((x - p) / 5)**2) for p in common_peaks_true)
# 各スペクトルごとに異なるランダムピークを追加
num_random_peaks = np.random.randint(2, 5) # ランダムピークの数
random_peaks = np.random.uniform(150, 350, num_random_peaks) # 150-350 cm?1の範囲にランダム配置
spectrum += sum(np.exp(-((x - p) / 5)**2) for p in random_peaks)
# ランダムなノイズを追加
spectrum += np.random.normal(0, 0.05, len(x))
# 1次微分を計算
dy = np.diff(spectrum) # y の差分
dx = np.diff(x) # x の差分
slope = dy / dx # 微分値
# ピーク検出 (符号が + → - に変化する場所)
peak_indices = np.where((slope[:-1] > 0) & (slope[1:] < 0))[0] + 1 # +1 で元の配列に戻す
# しきい値(高さ)でフィルタリング
height_threshold = 0.2
peak_indices = [idx for idx in peak_indices if spectrum[idx] > height_threshold]
peak_positions.append(x[peak_indices])
spectra.append(spectrum)
# 共通ピークの検出(±1 cm?1 の範囲で一致するピークを抽出)
tolerance = 1.0
common_peaks_detected = set(peak_positions[0])
for peaks in peak_positions[1:]:
common_peaks_detected = {p for p in common_peaks_detected if any(abs(p - q) < tolerance for q in peaks)}
# 共通ピークを強調表示
plt.figure(figsize=(8, 5))
for p in common_peaks_detected:
plt.axvline(p, color='pink', linestyle='--', label="Common Peak" if p == list(common_peaks_detected)[0] else "")
# 結果のプロット
for i, spectrum in enumerate(spectra):
plt.plot(x, spectrum, alpha=0.6, label=f"Spectrum {i+1}")
plt.legend()
plt.xlabel("Wavenumber (cm?1)")
plt.ylabel("Intensity")
plt.title("Detected Common Peaks without find_peaks")
plt.show()
print("共通ピークの位置:", sorted(common_peaks_detected))