Commit History

Modified the Object behavior / Method plot_vector_add into a previous instantiation
a78f833
verified

TroglodyteDerivations commited on

Removed hashtags in the Object behavior / Method plot_vector_add
b7cc2fd
verified

TroglodyteDerivations commited on

Updated by adding two hashtags on lines 24 & 25. Validating if only v1 plots
113f0d4
verified

TroglodyteDerivations commited on

Updated the Object behavior / Method plot_vector_add
1b66d7e
verified

TroglodyteDerivations commited on

Updated lines 18, 23 , 24 with: v3_text = f'The new vector 3 produced = vector 1: {self.v1} + vector 2: {self.v2} = {v3}’, plt.plot([0, self.v1[0]], [0, self.v1[1]], 'b', label='v1’) , plt.plot([0, self.v2[0]], [0, self.v2[1]], 'r', label='v2')
6803e5f
verified

TroglodyteDerivations commited on

Updated lines 9 & 10 with: self.v1 = np.array([v1, 0]) and self.v2 = np.array([v2, 0]). A second element is present in both arrays, now.
c415270
verified

TroglodyteDerivations commited on

Modified lines 9 & 10 with: self.v1 = np.array([v1]) and self.v2 = np.array([v2])
2d7b033
verified

TroglodyteDerivations commited on

Updated lines 9 & 10 with: np.array(v1) and np.array(v2)
239317b
verified

TroglodyteDerivations commited on

Updated lines 9 & 10 with: self.v1 = np.array(v1.split(‘,’)).astype(int) and self.v2 = np.array(v2.split(‘,’)).astype(int)
79d3041
verified

TroglodyteDerivations commited on

Updated with the removal of ‘lines’ inside gr.components.Number for lines 45 & 46
caf082f
verified

TroglodyteDerivations commited on

Updating lines 45 & 46 with Number instead of Textbox
55f6edc
verified

TroglodyteDerivations commited on

Updated lines 9 & 10 with the converting of v1 and v2 into numpy arrays. Also, the Object behavior / Method vector_add with self.v1 + self.v2 (line 17). And the underlying Object behavior / Method plot_vector_add with numpy array removal in declarations, echoing functionality deriving from numpy array declarations in lines 9 & 10
789f285
verified

TroglodyteDerivations commited on

Updated lines 47 & 48 with modified attribute ‘components' instead of orginal instantation based on attribute ‘outputs'
4cdb8c0
verified

TroglodyteDerivations commited on

Modified lines 45 & 46 with components instead of inputs
5a3b41b
verified

TroglodyteDerivations commited on