MRC
Followers: 0 Following: 0
Statistics
46 Questions
0 Answers
RANK
14.096
of 295.448
REPUTATION
3
CONTRIBUTIONS
46 Questions
0 Answers
ANSWER ACCEPTANCE
73.91%
VOTES RECEIVED
3
RANK
of 20.227
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 153.872
CONTRIBUTIONS
0 Problems
0 Solutions
SCORE
0
NUMBER OF BADGES
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
Question
Compare each row of a matrix with the remaining ones
I have a matrix A of zeros and ones with dimension BxM. Specifically, A contains all the possible dispositions of ones and z...
meer dan 7 jaar ago | 0 answers | 0
0
answersQuestion
Saving in txt format in Matlab with commas and semicolons
I have a huge matrix in Matlab that I want to save in .txt format (or in any other text format). Suppose the matrix is ...
bijna 10 jaar ago | 1 answer | 0
1
answerQuestion
Saving/Working with variables using loop index?
Hi, I have some problems with the following piece of code in indexing the names using the loop index. Could you help me? ...
bijna 10 jaar ago | 1 answer | 0
1
answerQuestion
Several draws from multivariate normal distribution
Let MU=[1 2; 3 4; 5 6] SIGMA=[2 0; 0 2] I want to write one or two lines of code to draw R=10 unobservables from Norm...
meer dan 10 jaar ago | 2 answers | 1
2
answersQuestion
How to compute frequency of rows for submatrices?
I have a matrix D which is a concatenation of 4 matrices of 3 rows (breaks added for clarity). I would like to construct a matri...
meer dan 10 jaar ago | 2 answers | 0
2
answersQuestion
How to construct a binary matrix reporting 1 in case of equal rows of two arrays of different dimensions?
Hi, I have a matrix nxk A=[ 1 2; 3 4; 5 6; 7 8] and a matrix B mxk (m can be > = or < n) B=[ 2 3; 4 5; 1 2; 5 6; 1...
meer dan 10 jaar ago | 2 answers | 0
2
answersQuestion
How to create a matrix of four dimensions in which the fourth dimension is not fixed?jkjsdfhlksdjhf
Hi, I would like to create a matrix of four dimensions, in which the last dimension is not fixed, in the sense that: suppose ...
meer dan 10 jaar ago | 1 answer | 0
1
answerQuestion
How to repeat the rows of a matrix by a varying number?
Hi, I have a matrix A mxn and a matrix B mx1. I want to create a matrix C which repeats each row of A by the number of times ind...
meer dan 10 jaar ago | 2 answers | 0
2
answersQuestion
Generate three dimensional arrays using mvnrnd in Matlab?
I need to generate a three dimensional matrix B in Matlab using the command mvnrnd. In particular, let mu=[0 0; -1 -3; 0 4...
meer dan 10 jaar ago | 1 answer | 0
1
answerQuestion
Counting subrows in each row of a matrix?
Hi all, I need an algorithm which counts how many adjacent and non-overlapping (1,1) I have in each row of a matrix A mx(n*2) w...
meer dan 10 jaar ago | 2 answers | 0
2
answersQuestion
Numbering the rows of a matrix giving the same number to equal rows?
Hi all, I have a matrix A mxn with some equivalent rows; the equivalent rows can only be adjacent. I want to create without loo...
meer dan 10 jaar ago | 1 answer | 0
1
answerQuestion
Algorithm which swaps the columns of a matrix A mx(n*2) without looping?
Hi all, I need an algorithm which swaps the columns of a matrix A mx(n*2) without looping in the following way: %if A=[col...
meer dan 10 jaar ago | 1 answer | 0
1
answerQuestion
Transform algorithm avoiding loops
Hi, I have to transform the following algorithm in an algorithm without loops. Consider a matrix A with the following charact...
meer dan 10 jaar ago | 0 answers | 0
0
answersQuestion
How to pick the j-th percentile of a vector?
Hi, I have a matrix A nx1, e.g. A=randn(200,1); II want to pick the element of A which is the 25th percentile above the ...
meer dan 10 jaar ago | 3 answers | 0
3
answersQuestion
How to count how many times each element appears in a vector preserving the order?
I have a matrix A ax1, e.g. A=[5; 5; 5; 1; 4; 4; 3; 3; 3]; I want a vector B of dimension size(unique(A))x1 which shoul...
meer dan 10 jaar ago | 1 answer | 0
1
answerQuestion
Option 'stable' of the command unique?
I have a matrix A ax1 and a vector B which is obtained as B=sum( bsxfun(@eq, A, unique(A,'stable')') )' E.g. A=[5;...
meer dan 10 jaar ago | 1 answer | 0
1
answerQuestion
Compare two matrices of different dimensions
I have a matrix B of dimension bx2 and a matrix A of dimension ax5 with the following characteristics: B=[3 1; 3 2;...
meer dan 10 jaar ago | 1 answer | 0
1
answerQuestion
How can I check whether the strictly positive elements of each row of a matrix are equal?
How can I check whether the strictly positive elements of each row of a matrix are equal? E.g. if A=[0 1 1 2; 0 1 0 1; 3 0 ...
meer dan 10 jaar ago | 3 answers | 0
3
answersQuestion
How to compare two matrices of different dimensions?
I have a matrix B of dimension bx2 and a matrix A of dimension ax5 with the following characteristics: B=[1 18; 1 19; 3 1;...
meer dan 10 jaar ago | 2 answers | 0
2
answersQuestion
How to rearrange the rows of a matrix?
Hi, I want to reshape a matrix A of dimension rxc in a matrix B of the same dimension but with rows rearranged following the ind...
meer dan 10 jaar ago | 2 answers | 0
2
answersQuestion
How to select only some sections of a matrix?
Hi, I have the matrix C=[1 1; 1 2; 1 2; 1 3; 2 4; 2 5; 2 5; 2 6; 3 7; 3 8; 3 9; 3 10; 4 11; 4 12; 4 13; 4 14; 5 15; 5 1...
meer dan 10 jaar ago | 2 answers | 0
2
answersQuestion
Find the global minimum of a smooth function
I have a smooth non-negative function of a parameter theta (attached) which should be minimized with respect to theta; which sol...
meer dan 10 jaar ago | 1 answer | 0
1
answerQuestion
Which is the machine precision of Matlab?
Hi all, I have the following problem: I want to find the argmax (not necessarily unique) of a function f(alpha,beta). Under som...
bijna 11 jaar ago | 2 answers | 0
2
answersQuestion
How to split a matrix in different sections in a loop?
Hi all, I have to pick a particular section of a matrix A in each iteration of a loop and use that section for getting some resu...
bijna 11 jaar ago | 1 answer | 0
1
answerQuestion
Problem with fmincon and many starting values
Hi all, I'm trying to code the following minimization problem using fmincon and many starting values but I get error messages ...
bijna 11 jaar ago | 1 answer | 0
1
answerQuestion
How to use fmincon for constrained maximum likelihood?
Hi, I'm trying to solve a constrained minimization problem but I get several error messages. Could you help me in adjusting the ...
bijna 11 jaar ago | 1 answer | 0
1
answerQuestion
Why fminunc does not find the true global minimum?
Hi all, I should solve this unconstrained optimization problem (attached). I know that the function has the global minimum at [...
bijna 11 jaar ago | 2 answers | 0
2
answersQuestion
How to use fminunc providing gradient and hessian?
Hi, could you help me in making this code (attached) working? Thanks!
bijna 11 jaar ago | 2 answers | 0
2
answersQuestion
Why fminsearch does not find the global minimum?
Hi all, I want to minimize the function fun below and I know that it has a global minimum which is par=[1 2 2 3] but fminsearch ...
bijna 11 jaar ago | 1 answer | 0
1
answerQuestion
Selecting only some rows of a matrix
Hi, I have a matrix A mxn and I want to select only some of its rows satisfying this criterion: A(i,1)<=1e-03 && A(i,1)>=-1e-0...
bijna 11 jaar ago | 3 answers | 0