Statistics
15 Questions
0 Answers
RANK
19.151
of 295.448
REPUTATION
2
CONTRIBUTIONS
15 Questions
0 Answers
ANSWER ACCEPTANCE
93.33%
VOTES RECEIVED
2
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
How to solve an equation with one variable (x) including a "sum" from 1:n?
Hi, I never used Matlab to solve simple equations, so it would be awesome if anyone could help me out: I want to get to know...
meer dan 10 jaar ago | 1 answer | 0
1
answerQuestion
How to reshape a 2D to 3D matrix without using loops (reshape) and keeping a particular order of the elements// Wrong arragement of elemts after using "reshape"
I've a problem using the reshape function. I've a Matrix A: A = 1 2 3 4 5 6 7 8 9...
meer dan 10 jaar ago | 1 answer | 0
1
answerQuestion
Quicker function than repmat to multiplay matrices with vectors?
I've recognised that in my programm the most time-consuming parts are the parts where I use repmat, most of the times when I wan...
meer dan 10 jaar ago | 1 answer | 0
1
answerQuestion
How can I easily get for each day in 2013 the type of day? ( Weekday, Saturday, Sunday)
Hello, I want to know if there's an easy way to get to know for each day in 2013 if it was a weekday or a Saturday or Sunday. ...
meer dan 10 jaar ago | 2 answers | 1
2
answersQuestion
Delete last n1,n2,n3 (...) elements in each row in a Matrix in an efficient way or set to zero
I've a large set of data and i want to remove from the end of each row a different amount of elements (0-n). Is there a fast way...
meer dan 10 jaar ago | 2 answers | 0
2
answersQuestion
How to change Elements in Matrix per row depending on their size in reference to a particular Element (without loop)
I've Data (in the real case much bigger) like this: A = 0 3 4 5 2 3 1 2 4 6 2...
bijna 11 jaar ago | 3 answers | 0
3
answersQuestion
How to shift rows in a matrix by different values (e.g. line 1 n-spots, line 2 m-spots and so on) without using a loop
I want to shift rows in a matrix randomly. It is im important that every row in shiftet by a random number. I tried to implement...
bijna 11 jaar ago | 3 answers | 1
3
answersQuestion
Insert Zeros (m -rows) in an existing Matrix every n-rows in an efficient way
I've data like this (the actualy matrix is much bigger) A = 1 1 2 2 3 3 4 4 5...
bijna 11 jaar ago | 3 answers | 0
3
answersQuestion
Rearrange 3 small matrices to a bigger one with a certain order: taking first n-rows of each of the smaller matrices after each other
I have three smaller Matrices that I want to transform to one bigger one with the following order: >> A1 = 1 1 ...
bijna 11 jaar ago | 3 answers | 0
3
answersQuestion
How to rearrange 3 small matrices to a bigger one with a certain order of rows without using loops
I guess this one is quite simple but yet I didn't come up with a nice solution: I have three smaller Matrices that I want to ...
bijna 11 jaar ago | 1 answer | 0
1
answerQuestion
Create new smaller Matrix by summing every n-rows in old Matrix (without loops)
I've a Matrix like A = 1 1 1 2 2 2 3 3 3 4 4 4 5 5 5 ...
bijna 11 jaar ago | 1 answer | 0
1
answerQuestion
How to quickly change 3D to 2D Matrix
I've a Matrix e.g. A(:,:,1) = 1 1 1 2 2 2 3 3 3 A(:,:,2) = 4 4 ...
bijna 11 jaar ago | 1 answer | 0
1
answerQuestion
How to set all elements in a 2D Matrix between two indices to "1" in each row
I've a matrix A e.g. like this: A = 1 0 0 1 0 0 0 0 1 0 0 1 0 ...
bijna 11 jaar ago | 3 answers | 0
3
answersQuestion
How to edit elements per row in a 3D-matrix using a vextor with (X,Y,Z)-coordinates indecating a first index and a last index. All elements between these two shall be '1'. If possible without a loop to be most efficient
I have 3D matrix with Zeros, e.g. A=zeros(10,10,3); Also I've "start-coordinates" and "stop-coordinates" for each Dimension (...
bijna 11 jaar ago | 0 answers | 0
0
answersQuestion
How to find first nonzero element/first '1' per row and set other elements to zero without loops in 3D Matrix
I've a Matrix f.ex. like A=[0,1,1,0; 1,0,0,1;0,0,0,1;0,1,1,1]; A = 0 1 1 0 1 0 0 1 ...
bijna 11 jaar ago | 3 answers | 0