Reference Index Number
Given a reference set R of elements (each unique but identical in type), and a list V of elements drawn from the set R, possibly...
已回答 padarray using a for loop
I think the error is because you are trying to assign a padded row vector of length M to the pre-padded row vector of length N (...
7 years 前 | 0
已回答 faster reading using csvread question
Have you tried <https://www.mathworks.com/help/matlab/ref/readtable.html readtable>? I haven't run any timing diagnostics to see...
7 years 前 | 0
已回答 Replace NaN by using for loop
When you say "it cannot be run", do you mean that you receive an error? If so, what line does the error point to and what is the...
7 years 前 | 0
已解决
Percentage profit
If you are buying at x dollar, what will be the selling price for making the r% profit?
7 years 前
已解决
Find the minimal value in N*N Matrix
Suppose that we have N by N matrix, we try to find the minimal value in that matrix.
examples:
Input A=[1 2 3 5 6;52 58 56 45...
7 years 前
已解决
number of groups
In a classroom, *n* students work on a special project and the other students work in groups of five. If there are 18 students i...
7 years 前
已解决
Geometric Series
Given x and n, give the sum of x ^ 1 to x ^ n. You should not have to use a loop for this.