imaginary results
Return the value of the imaginary number i to the power of input argument n.
3年以上 前
解決済み
Beginner's Problem - Squaring
Try out this test problem first.
Given the variable x as your input, square it by two and put the result in y.
Examples:
...
MATLAB Basics: Complex Numbers
For a given complex number, x, return the real and imaginary parts as a vector, y = [Real Imaginary].
3年以上 前
解決済み
Complex transpose
Calculate the transpose of a matrix having complex numbers as its elements without changing the signs of the imaginary part.
...
3年以上 前
解決済み
Back to basics 10 - Max Float
Covering some basic topics I haven't seen elsewhere on Cody.
Return the largest positive floating-point number MATLAB can han...
Find supported functions
Given a function name, return true if that function is supported by the toolboxes that are installed with MATLAB on this machine...
3年以上 前
解決済み
Who invented zero?
We know the importance zero in computer science, mathematics... but who invented zero?
Clue:
He was the first in the line ...
3年以上 前
解決済み
cofactor matrix
given a matrix, find its cofactor matrix
<https://en.wikipedia.org/wiki/Minor_(linear_algebra)#Inverse_of_a_matrix>
3年以上 前
解決済み
Find the remainder - 02
Given an array of integers, find the remainder when the summation of all the elements is divided by N