Python numpy, help me

Asked 2 years ago, Updated 2 years ago, 45 views

In vector operation, Vect1 Vect2 and those two

Addition, Deletion, Constant Multiplication, Inner Product

I'd like to print these four out It's easy to add two more vects for the addition, but I don't know the restㅠㅠ<

What should I do?

python numpy

2022-09-22 14:11

1 Answers

Deletion

vect1 - vect2

Constant Multiplication

vect1 * 4

Inner Product

np.inner(vect1, vect2)


2022-09-22 14:11

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.