已解决


Return the 3n+1 sequence for n
A Collatz sequence is the sequence where, for a given number n, the next number in the sequence is either n/2 if the number is e...

5 years 前

已解决


Find square of given number
Find Square of any number

5 years 前

已解决


Square root of number
Square root of given number.

5 years 前

已解决


Sum Sum Sum!
Calculate the sum of the natural numbers from 1 to n

5 years 前

已解决


Perimeter of a square!
Calculate the circumference of the square whose side is n

5 years 前

已解决


Sum sum!!!
Sum the numbers from 1 to n

5 years 前

已解决


Calculate the square root of a number
Input a Output b = srt(a)

5 years 前

已解决


calculate the length of matrix
input 1 array, calculate the length

5 years 前

已解决


Find the max element of the array
Find the max element of the array

5 years 前

已解决


easy problem
Find the last element of the array

5 years 前

已解决


the average value of the elements
Calculate the average value of the elements in the array

5 years 前

已解决


Converts numbers into characters
Converts numbers into characters

5 years 前

已解决


to the 2 all elements
to the 2 all elements

5 years 前

已解决


Given a vector x, return vector y with all negative elements from the vector x.
Given a vector x, return vector y with all negative elements from the vector x if x has negative elements. Otherwise return 0. ...

5 years 前

已解决


Calculate the area of a circle
Given a circle of diameter x calculate its area

5 years 前

已解决


Back to basics - mean of corner elements of a matrix
Calculate the mean of corner elements of a matrix. e.g. a=[1 2 3; 4 5 6; 7 8 9;] Mean = (1+3+7+9)/4 = 5

5 years 前

已解决


Find the sum of the elements in the "second" diagonal
Find the sum of the elements in the diagonal that starts at the top-right corner and ends at the bottom-left corner.

5 years 前

已回答
How do you reconstruct a test image from eigenfaces generated from Matlab pca function
You can use this MATLAB GUI for the recontruction of the image (both for colour and grayscale images) https://in.mathworks.co...

5 years 前 | 1

已解决


Given a 4x4 matrix, swap the two middle columns
If a = [1 2 3 4; 1 2 3 4; 1 2 3 4; 1 2 3 4]; then the result is ans = 1 3 2 4 1 3 2...

5 years 前

已提交


Image Aggregation of the Sentinel 1A images in MATLAB
Image aggregation of the SAR image of Sentinel 1A.

5 years 前 | 1 次下载 |

Thumbnail

已解决


Find the largest value in the 3D matrix
Given a 3D matrix A, find the largest value. Example >> A = 1:9; >> A = reshape(A,[3 1 3]); >> islargest(A) a...

5 years 前

已回答
Sawtooth Waveform With Variable Frequency and constant amplitude
T = 10*(1/50); fs = 1000; t = 0:1/fs:T-1/fs; a=2*pi; x = a*sawtooth(2*pi*50*t,1/2); plot(t,x)

5 years 前 | 0

已解决


Getting the indices from a vector
This is a basic MATLAB operation. It is for instructional purposes. --- You may already know how to <http://www.mathworks....

5 years 前

已解决


Column Removal
Remove the nth column from input matrix A and return the resulting matrix in output B. So if A = [1 2 3; 4 5 6]; ...

5 years 前

已回答
Create a new vector with even numbers first.
x = [20 21 22 23 24 25 26 27 28 29] % Find indices where x is even: evenIndices = rem(x, 2) == 0 % Extract only the even nu...

5 years 前 | 0

已回答
Connecting dots with straight line in a loop.
Follow this code. https://in.mathworks.com/matlabcentral/fileexchange/57185-cognitive-radio-frequency-assignment-with-interfere...

5 years 前 | 0

已提交


Penetration-depth-evaluation-of-L-and-S-band-SAR-Signals
We study the functional relationship between the dielectric constant of soil-water mixture and penetration depth of microwave si...

5 years 前 | 3 次下载 |

Thumbnail

已解决


Return area of square
Side of square=input=a Area=output=b

5 years 前

已解决


Maximum value in a matrix
Find the maximum value in the given matrix. For example, if A = [1 2 3; 4 7 8; 0 9 1]; then the answer is 9.

5 years 前

已解决


Add two numbers
Given a and b, return the sum a+b in c.

5 years 前

加载更多