Resuelto


Circle area using pi
Given a circle's radius, compute the circle's area. Use the built-in mathematical constant pi.

más de 11 años hace

Resuelto


Reverse the vector
Reverse the vector elements. Example: Input x = [1,2,3,4,5,6,7,8,9] Output y = [9,8,7,6,5,4,3,2,1]

más de 11 años hace

Resuelto


Sum all integers from 1 to 2^n
Given the number x, y must be the summation of all integers from 1 to 2^x. For instance if x=2 then y must be 1+2+3+4=10.

más de 11 años hace

Resuelto


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...

más de 11 años hace

Resuelto


Back and Forth Rows
Given a number n, create an n-by-n matrix in which the integers from 1 to n^2 wind back and forth along the rows as shown in the...

más de 11 años hace

Resuelto


Check if sorted
Check if sorted. Example: Input x = [1 2 0] Output y is 0

más de 11 años hace

Resuelto


Most nonzero elements in row
Given the matrix a, return the index r of the row with the most nonzero elements. Assume there will always be exactly one row th...

más de 11 años hace

Resuelto


Find the numeric mean of the prime numbers in a matrix.
There will always be at least one prime in the matrix. Example: Input in = [ 8 3 5 9 ] Output out is 4...

más de 11 años hace

Respondida
How do you transform a vector of numbers into a cell of strings?
Hi, one possibility: Acell = num2cell(A); B = cellfun(@(x) sprintf('%g', x), Acell, 'UniformOutput', false); Titus

más de 11 años hace | 0

Respondida
Comparing two matrix in Matlab
Hi, this question is rather tricky to answer in general. A simple approach is to compute the relative error. That works fine ...

más de 11 años hace | 0

Respondida
Create this particular SPARSE matrix to solve a quadratic program
Hi, I guess this will not work. If I take a look at M for d=16, it's 256*256 and requires (converted to sparse) about 0.12MBy...

más de 11 años hace | 0

| aceptada

Resuelto


Remove any row in which a NaN appears
Given the matrix A, return B in which all the rows that have one or more <http://www.mathworks.com/help/techdoc/ref/nan.html NaN...

más de 11 años hace

Resuelto


Finding Perfect Squares
Given a vector of numbers, return true if one of the numbers is a square of one of the other numbers. Otherwise return false. E...

más de 11 años hace

Resuelto


Weighted average
Given two lists of numbers, determine the weighted average. Example [1 2 3] and [10 15 20] should result in 33.333...

más de 11 años hace

Resuelto


Create times-tables
At one time or another, we all had to memorize boring times tables. 5 times 5 is 25. 5 times 6 is 30. 12 times 12 is way more th...

más de 11 años hace

Resuelto


Determine whether a vector is monotonically increasing
Return true if the elements of the input vector increase monotonically (i.e. each element is larger than the previous). Return f...

más de 11 años hace

Resuelto


Make a checkerboard matrix
Given an integer n, make an n-by-n matrix made up of alternating ones and zeros as shown below. The a(1,1) should be 1. Example...

más de 11 años hace

Resuelto


Find all elements less than 0 or greater than 10 and replace them with NaN
Given an input vector x, find all elements of x less than 0 or greater than 10 and replace them with NaN. Example: Input ...

más de 11 años hace

Resuelto


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]; and ...

más de 11 años hace

Resuelto


Determine if input is odd
Given the input n, return true if n is odd or false if n is even.

más de 11 años hace

Resuelto


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

más de 11 años hace

Resuelto


Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...

más de 11 años hace

Resuelto


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

más de 11 años hace

Respondida
any(cell{i}) doesn't work (loop)
Could it be that you meant to write any(a{i}<0) instead of any(a{i})<0 likewise for the others ?? Titus

más de 11 años hace | 0

| aceptada

Respondida
Basic question regarding S function
Hi Sameer, the easist would be to use a parameter for the S-Function, read the xls file in MATLAB and pass the data as parame...

más de 11 años hace | 0

| aceptada

Respondida
converting 2d matrix to 3d
HI Joe, if I'm not mistaken, it should be permute(reshape(X, 512, 140, 8), [1 3 2]); Titus

más de 11 años hace | 12

| aceptada

Respondida
Iterations are taking too long
Hi, two things to start with: * I'm missing the initialization of U: add U = zeros(nt, nz) before entering the loop (same ...

más de 11 años hace | 0

| aceptada

Respondida
How to read a large text file quickly ( exceeding 20GB)
Hi Sivanand, you will be able to read the original file using fopen and textscan, because you can use textscan in a loop to r...

más de 11 años hace | 0

Respondida
Mcc in Symbolic Math toolbox
Hi Sriram, it depends: do you want to continue with the symbolic expression, i.e., do you want to do some more calculations? ...

más de 11 años hace | 0

Respondida
Embedded Matlab Function - Output for every calculation
Hi, I think there is a misunderstanding of how this works. The MATLAB code you write is executed at each time step, completel...

más de 11 años hace | 0

| aceptada

Cargar más