문제를 풀었습니다


Find scalar product of two polynomials a and b, given as vector array.
Find scalar product of two polynomials given as vector array. Example a=[1 -1 2]; b=[2 4 1]; result=0

9년 초과 전

문제


Find scalar product of two polynomials a and b, given as vector array.
Find scalar product of two polynomials given as vector array. Example a=[1 -1 2]; b=[2 4 1]; result=0

9년 초과 전 | 0 | 솔버 수: 78

문제를 풀었습니다


Calculate roots of polynomial given as vector array.
Calculate roots of polynomial given as vector array. Example x=[1 2 0 5 0 3] result=[-2.7267 ; ...

9년 초과 전

문제


Calculate roots of polynomial given as vector array.
Calculate roots of polynomial given as vector array. Example x=[1 2 0 5 0 3] result=[-2.7267 ; ...

9년 초과 전 | 1 | 솔버 수: 90

문제를 풀었습니다


Get derivarive of polynomial given as vector array.
Get derivarive of polynomial given as vector array. Example p=[ 1 2 0 5 0 3 ]; result=[ 5 8 0 10 ...

9년 초과 전

문제


Get derivarive of polynomial given as vector array.
Get derivarive of polynomial given as vector array. Example p=[ 1 2 0 5 0 3 ]; result=[ 5 8 0 10 ...

9년 초과 전 | 1 | 솔버 수: 82

답변 있음
Hi. Anyone can help me? please.
Maybe this will help you) C=0:20:100 F=9/5*C+32

9년 초과 전 | 0

| 수락됨

문제를 풀었습니다


Calculate the hypotenuse of a right triangle without using ^ and sqrt ()
Find out the hypotenuse of right triangle. Say a = 4, b = 3 then c = 5 Please don't use ^ and sqrt() function.

9년 초과 전

문제를 풀었습니다


Sort rows of a matrix
Sort rows of matrix A in an ascending order according to the last column Example input: A = [1 2 3;7 8 9;4 5 6]; Exam...

9년 초과 전

문제를 풀었습니다


Divide polynomial p1 by p2.
Divide polynomial p1 by p2 given as vectors. Return result q and r vectors which corresponds the quotient and remainder of divis...

9년 초과 전

문제


Divide polynomial p1 by p2.
Divide polynomial p1 by p2 given as vectors. Return result q and r vectors which corresponds the quotient and remainder of divis...

9년 초과 전 | 1 | 솔버 수: 62

문제를 풀었습니다


Multiply two polynomials p and q given in in vector representation.
Multiply two polynomials p and q given in vector representation. Example p=[-2 0 1 -1 3 2] q=[1 0 -1 2 ...

9년 초과 전

문제


Multiply two polynomials p and q given in in vector representation.
Multiply two polynomials p and q given in vector representation. Example p=[-2 0 1 -1 3 2] q=[1 0 -1 2 ...

9년 초과 전 | 1 | 솔버 수: 73

문제를 풀었습니다


Calculate the values of a polynomial.
Calculate the values of a polynomial.Input parameter p - vector of polynomial coefficients, x - matrix of the argument values. ...

9년 초과 전

문제


Calculate the values of a polynomial.
Calculate the values of a polynomial.Input parameter p - vector of polynomial coefficients, x - matrix of the argument values. ...

9년 초과 전 | 1 | 솔버 수: 87

문제를 풀었습니다


Opposite task convert string hexadecimal numbers array into array of decimal numbers .
Opposite task convert string hexadecimal numbers array into array of decimal numbers . Example x=[ '208'; '209'; '20A'; ...

9년 초과 전

문제


Opposite task convert string hexadecimal numbers array into array of decimal numbers .
Opposite task convert string hexadecimal numbers array into array of decimal numbers . Example x=[ '208'; '209'; '20A'; ...

9년 초과 전 | 1 | 솔버 수: 58

문제를 풀었습니다


Opposite task convert binary numbers array into array of decimal numbers.
Opposite task convert binary numbers array into array of decimal numbers. Example x=[ 11001000 ; 11001001 ; 11001010 ...

9년 초과 전

문제


Opposite task convert binary numbers array into array of decimal numbers.
Opposite task convert binary numbers array into array of decimal numbers. Example x=[ 11001000 ; 11001001 ; 11001010 ...

9년 초과 전 | 2 | 솔버 수: 167

답변 있음
write script( a for loop that multiplies all evens numbers from 2 to 10)
x=2:10; x=x(mod(x,2)==0) res=1; s=size(x) for i=1:s(1) for j=1:s(2) res=res*x(i,j); end end

9년 초과 전 | 0

답변 있음
How to convert decimal matrix matrix into binary matrix?
Use dec2base(a,2) command to get string array of binary numbers and str2num(dec2base(a,2)) to convert string into numbers

9년 초과 전 | 0

문제를 풀었습니다


Convert array of decimal numbers into hexadecimal numbers array.
Convert array of decimal numbers into hexadecimal numbers array. Example x =[ 32 33 34 35 36 37 38 ...

9년 초과 전

문제


Convert array of decimal numbers into hexadecimal numbers array.
Convert array of decimal numbers into hexadecimal numbers array. Example x =[ 32 33 34 35 36 37 38 ...

9년 초과 전 | 2 | 솔버 수: 68

문제를 풀었습니다


Convert array of decimal numbers into binary numbers array.
Convert array of decimal numbers into binary numbers array. Example x = [1 2 3 4 5 6 7 8 ]; re...

9년 초과 전

문제


Convert array of decimal numbers into binary numbers array.
Convert array of decimal numbers into binary numbers array. Example x = [1 2 3 4 5 6 7 8 ]; re...

9년 초과 전 | 3 | 솔버 수: 57

문제를 풀었습니다


What does the "B" in Benoit B Mandelbrot stand for?
Tip https://en.wikipedia.org/wiki/Mandelbrot_set

9년 초과 전

문제를 풀었습니다


Find the sine angles of an isosceles triangle when given its area and height to its base.
Find the sine of angles of an isosceles triangle when given its area and height to its base. Example S=60, h=5 result=[0.3752...

9년 초과 전

문제


Find the sine angles of an isosceles triangle when given its area and height to its base.
Find the sine of angles of an isosceles triangle when given its area and height to its base. Example S=60, h=5 result=[0.3752...

9년 초과 전 | 2 | 솔버 수: 57

문제를 풀었습니다


Find the sides of an isosceles triangle when given its area and height to its base.
Find the sides of an isosceles triangle when given its area and height to its base. Example S=12, h=4, result will be [5 5 6]...

9년 초과 전

문제


Find the sides of an isosceles triangle when given its area and height to its base.
Find the sides of an isosceles triangle when given its area and height to its base. Example S=12, h=4, result will be [5 5 6]...

9년 초과 전 | 12 | 솔버 수: 2143

더 보기