Question: ### 1 : Generate a 3 * 3 matrix filled with 9 s . ### 2 : Generate a sequence start from - 5 .

### 1: Generate a 3*3 matrix filled with 9s.
### 2: Generate a sequence start from -5.0 to 5.0(inclusive), with step size of 1.0.
### 3: Generate another 3*3 matrix with normal distribution. Choose any mean and stddev you like.
nine_array = # implement 3x3 matrix here
seq = # implement sequence here
dist = # implement the random 3x3 matrix here
tf.print('nine array:
',nine_array)
tf.print('sequence:
', seq)
tf.print('distribution:
',dist)
tensorflow code

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!