🐍 Python & Raspberry 🐍
8.21K subscribers
1.92K photos
125 videos
623 files
1.23K links
Python- Raspberry Pi-AI-IOT
ادمین : فرهاد ناصری زاده
@farhad_naserizadeh
@farhad3412

گروه پایتون
@Python_QA
تبادل
@mmtahmasbi
کانال مرتبط
@new_mathematical
@micropython_iot
@c_micro
اینستاگرام
http://Instagram.com/python_raspberry
Download Telegram
مثالی از بدست آوردن میزان وابستگی دو سیگنال
🌟 کاربردی
(رسم نمودار در پست بعد)

import numpy as np
import matplotlib.pyplot as plt

# Fixing random state for reproducibility
np.random.seed(19680801)

dt = 0.01
t = np.arange(0, 30, dt)

nse1 = np.random.randn(len(t)) # white noise 1

nse2 = np.random.randn(len(t)) # white noise 2

# Two signals with a coherent part at 10Hz and a random part

s1 = np.sin(2 * np.pi * 10 * t) + nse1

s2 = np.sin(2 * np.pi * 10 * t) + nse2

fig, axs = plt.subplots(2, 1)
axs[0].plot(t, s1, t, s2)
axs[0].set_xlim(0, 2)
axs[0].set_xlabel('time')
axs[0].set_ylabel('s1 and s2')
axs[0].grid(True)

cxy, f = axs[1].cohere(s1, s2, 256, 1. / dt)

axs[1].set_ylabel('coherence')

fig.tight_layout()
plt.show()

🆔 @raspberry_python
نمودار کد بالا

🆔 @raspberry_python
آی سی mcp23017 افزاینده Gpio

رابط i2c

کاربردی

🆔 @raspberry_python
❇️ @raspberryproject
FaceRec.pdf
1.1 MB
جزوه فارسی روش های تشخیص چهره

🆔 @raspberry_python
Learning.Software.Altium.Designer.pdf
1.7 MB
altium designer آموزش نرم افزار

(آلتیوم دیزاینر)

فارسی
🆔 @raspberry_python
nrf24l01

ماژولی مناسب برای دریافت و ارسال صوت
@raspberry_python
🌟 در اديتور زير ميتوان كدهایی که می نویسید را قرار بديد و همزمان بقيه مي توانند كدتان را تغيير بدهند و برای آن كامنت بزارن

https://codeshare.io

@raspberry_python
Dmitry_Zinoviev_Complex_Network.pdf
13.2 MB
Complex Network Analysis in Python
آنالیز شبکه های پیچیده با پایتون

🌟 سال انتشار 2018

💎 @raspberry_python