Aletta Wilbrink
Followers: 0 Following: 0
Statistics
RANK
6,148
of 295,467
REPUTATION
8
CONTRIBUTIONS
5 Questions
7 Answers
ANSWER ACCEPTANCE
80.0%
VOTES RECEIVED
0
RANK
of 20,234
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 153,912
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
create date from three column vectors
Is this wat you want? m = datevec(month,'mmmm'); d = datetime(year,m(2),day);
6 years ago | 0
Error: Inner Matrix dimensions must agree
You get this error because your dk and dA are not the same size dk is a 1x22 double en dA is a 22x22 double. You should ch...
6 years ago | 0
Question
Background color row in table
Is it possible to give specific rows in a table a background color, when I open the variable in my workspace or even give the te...
6 years ago | 1 answer | 0
1
answerAttempting to make multiple plots on multiple graphs using several arrays
Every time you want a new line in the same plot use hold on and if you want a new plot use hold off. You only use hold on for...
6 years ago | 0
Scatter plot: X and Y must be vectors of the same length
The problem is in the code scatter(q,max(Mzsol),'g') where q is yoour x and max(Mzsol) is your y. max(MZsol) gives y...
6 years ago | 0
| accepted
Question
how can I filter the nth character from categorical?
i have a categorical value a, looks like: a = 888-2018-02160001 Now I want the 10th and 11th character, the '02'. I al...
6 years ago | 2 answers | 0
2
answersQuestion
Format table with frequency of unique combination
I have a table T, a part of this looks like: Code Number1 Date Number2 ____ _______ __________...
6 years ago | 1 answer | 0
1
answerCan't figure out how to fix integer/logical error
The problem is t. h(t) asks for integers. It does work if you do: t = 1:30;
7 years ago | 0
Question
More effective code than loop that takes a lot of time
I have a table T with over 300.000 rows and 39 columns. I also have a table T2 with 8.800 rows, which is a subtable of T: ...
7 years ago | 1 answer | 0
1
answerHow can I get different colors for two meshes(3D) in same plot?
You can do it with the code <https://nl.mathworks.com/help/matlab/ref/colormap.html colormap>
7 years ago | 0
How to filter rows?
Probably not the most efficient way, but this works b = a(a(:,1)==1 & a(:,2) == 2 & a(:,3) == 3 & a(:,4) == 4,:) Where a...
7 years ago | 0
| accepted
Question
Compare two tables with two column combinations
I have two tables, say: t1 = table(categorical({'a';'b';'c';'c';'a';'b'}),categorical({'d';'e';'d';'f';'e';'d'}),[1;2;3;4...
7 years ago | 2 answers | 0