python中隨機生成1099的整數,構成55的矩陣

2021-03-03 21:09:45 字數 1626 閱讀 4197

1樓:好心bu分手

使用numpy 簡單的很

import numpy as np

import random

before = np.array([[random.randint(10, 99) for i in range(5)] for j in range(5)])

result = before.t

print(result)

2樓:匿名使用者

import numpy as np

matrix=random.randint(0,10,(5,5))print(matrix)

print(matrix.t)

定義一個5*5的二維陣列,其陣列元素為10-99間的隨機整數,將陣列顯示在

3樓:匿名使用者

用什麼語言寫的,要說清楚,這樣會的人就會幫忙???

#include

#include

#include

void main()

printf("\n");

}printf("對角偶數:%d\n",count);}

vb程式設計題: 隨機生成一個4行9列的矩陣,矩陣元素為10-99之間的隨機整數.列印顯示.

4樓:山舟

option base 1

private sub form_click()dim a(36) as integer, b(6, 6) as integer, i as integer, j as integer, num as integer

print "原矩陣:"

randomize

for i = 1 to 36

a(i) = int((99 - 10 + 1) * rnd + 10)

print a(i);

num = num + 1

if num mod 9 = 0 then printnext

for i = 1 to 35

for j = 1 to 36 - i

if a(j) > a(j + 1) thent = a(j)

a(j) = a(j + 1)

a(j + 1) = t

end if

next

next

print "排序後矩陣:"

for i = 1 to 36

print a(i);

num = num + 1

if num mod 6 = 0 then printnext

print "主對角線上數字為:"

for i = 1 to 6

print a((i - 1) * 6 + i);

next

print

end sub

定義一個5乘以5的二維陣列,其陣列元素為10到99間的隨機整數,將陣列顯示在

5樓:匿名使用者

樓主 你能把你的問題問完嗎。我沒有看懂你這個問的是什麼意思~

6樓:匿名使用者

要什麼語言啊,整數可不可以重複啊

python怎樣生成正態分佈的隨機數

import random exp 0 期望 var 1 方差 x random.normalvariate exp,var 你要生成的隨機數 python 如何產生在某一區間內的正態分佈的隨機數,求指點一下,謝謝啦 提問者你好,我在想這個的過程中可能幫你做出來了,所以就先用了,如果覺得ok,請採納...

vb中如何生成不同的隨機數,VB如何生成隨機數

為了生成某個範圍內的隨機整數,可使用以下公式 int upperbound lowerbound 1 rnd lowerbound 這裡,upperbound 是隨機數範圍的上限,而 lowerbound 則是隨機數範圍的下限。注意若想得到重複的隨機數序列,在使用具有數值引數的randomize 之...

delphi生成隨機矩陣

procedure myrandommatrix varintarr array 0.2,0.2 of integer i,j,t integer begin for i 0 to 8 do intarr i div 3,i mod 3 i for i 0 to 8 do begin j rando...