Qurak

Make a table

Veiledning 6 steg, kjørt i rekkefølge i én økt. Hvert steg ble kjørt mot motoren, og utdataene nedenfor er det de ga.

Steg 1
Table[i ^ 2, {i, 10}]
Utdata
{1, 4, 9, 16, 25, 36, 49, 64, 81, 100}
Steg 2
m = Table[i ^ 2 - j ^ 3, {i, 5}, {j, 6}]
Utdata
{{0, -7, -26, -63, -124, -215}, {3, -4, -23, -60, -121, -212}, {8, 1, -18, -55, -116, -207}, {15, 8, -11, -48, -109, -200}, {24, 17, -2, -39, -100, -191}}
Steg 3
Grid[m]
Utdata
Grid[{{0, -7, -26, -63, -124, -215}, {3, -4, -23, -60, -121, -212}, {8, 1, -18, -55, -116, -207}, {15, 8, -11, -48, -109, -200}, {24, 17, -2, -39, -100, -191}}]
Steg 4
Grid[m, Frame -> All]
Utdata
Grid[{{0, -7, -26, -63, -124, -215}, {3, -4, -23, -60, -121, -212}, {8, 1, -18, -55, -116, -207}, {15, 8, -11, -48, -109, -200}, {24, 17, -2, -39, -100, -191}}, Frame -> All]
Steg 5
Table[Plot[Sin[ n x], {x, 0, 2Pi}, ImageSize -> {150, 150}], {n, 1, 6}]
Utdata
{-Graphics-, -Graphics-, -Graphics-, -Graphics-, -Graphics-, -Graphics-}
Steg 6
Table[Factor[q ^ 5 - 1], {q, {x, y, z}}]
Utdata
{(-1 + x)*(1 + x + x^2 + x^3 + x^4), (-1 + y)*(1 + y + y^2 + y^3 + y^4), (-1 + z)*(1 + z + z^2 + z^3 + z^4)}

Funksjoner brukt

Relaterte oppskrifter

Alle oppskrifter · Funksjonsreferanse · Bruk dette fra en MCP-klient