Math, asked by bunnysunny210504, 2 months ago

If the value of greater of sin + tan r – 22 (0 < x < 7/2) at 7/4 is g (1/4) then g (1/4) - tis equal to
Backspace
7
8
9
4
5
6
1
2
3
0
Clear All​

Answers

Answered by karhaleom71
1

Answer:

variable = [value1-1 value1-2 value1-3 ... ; value2-1 value2-2 ...]

where each value may be rational or complex numbers. Within the square brackets that are used to form vectors and matrices, you can use a semicolon to end a row. For example:

>> x = [1 2 3 4; 0 9 3 8]

x =

1 2 3 4

0 9 3 8

>>

(Note: You can also use the semicolon after an expression or statement to suppress printing or to separate statements.)

You can also initialize matrices with complex numbers:

>> x = [4+5i 2 4; 1 3+i 7]

x =

4.0000 + 5.0000i 2.0000 4.0000

1.0000 3.0000 + 1.0000i 7.0000

Similar questions