12 lines
213 B
Python
12 lines
213 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
"""
|
||
|
Created on Thu Mar 3 18:23:42 2022
|
||
|
|
||
|
@author: Kenan
|
||
|
"""
|
||
|
|
||
|
import numpy as np
|
||
|
|
||
|
detected_LEDs_blue=np.load('detected_LEDs_blue.npy')
|
||
|
|
||
|
newarr = np.c_[detected_LEDs_blue, np.full((1,8,1),1)]
|