Joel Schelander
Followers: 0 Following: 0
Statistics
RANK
34.595
of 295.448
REPUTATION
1
CONTRIBUTIONS
69 Questions
1 Answer
ANSWER ACCEPTANCE
75.36%
VOTES RECEIVED
1
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
Make distribution visible in scatter plots
I have two vectors, I3 and D, of the size 1000000x1. They are plotted against each other in a scatter plot (see PIplot1) I want...
meer dan 3 jaar ago | 1 answer | 0
1
answerQuestion
Same value in two different matrices with different properties.
I have one matrix A an a matrix B. I want to create matrix C. matrix has the same size of A, but with numbers from B. A=[987 58...
meer dan 3 jaar ago | 1 answer | 0
1
answerQuestion
How to use a default color in a graph?
Previous figures in my report has the default color (RGB triplets and Hexadecimal color code) [0 0.4470 0.7410] '#0072BD' My...
meer dan 3 jaar ago | 1 answer | 0
1
answerQuestion
Matlab plots in Masters thesis
I have two kinds of plots, a histogram and a dotted plot: histogram(x) plot(x,y,'.') I wonder if there is a standard format...
meer dan 3 jaar ago | 1 answer | 0
1
answerQuestion
Size of cell changes when calling it from a function?
I am calling a function like this: for z=1:3 if z==1 [GUD,GUDID]=H1(ID2,HHPerson,nBEV,BEV,x,Hcombos,Hous...
meer dan 3 jaar ago | 0 answers | 0
0
answersQuestion
Plotting doubles against cells
I have 36 cells in the cell array AAG(36x1) A cell looks like this: AAG{3,1}=1x923 cell={1x757 double 1x726 double 1x761 doub...
meer dan 3 jaar ago | 1 answer | 0
1
answerQuestion
Removing values from plot and applying curve
I want to remove the values situated on y=0 and x=0. How can I do this? Is there a way to translate this into a curve somehow? ...
meer dan 3 jaar ago | 1 answer | 0
1
answerQuestion
Problem with vertically Concatenating vectors in a function
I have a cell array ABC containing three cells each cell contains a 1x1000 double. What I want is to put every double on top of ...
meer dan 3 jaar ago | 2 answers | 0
2
answersQuestion
Problem - vectors must be the same size
I have a function below that put 36 vectors on top of each other. I do this so I can plot it with another vector I3 from another...
meer dan 3 jaar ago | 1 answer | 0
1
answerQuestion
How to make a surface plot with colors for three variables
I want to plot how the increase in power demand AAG of households relates to the number of inhabitants AAI. I have 36 houses and...
meer dan 3 jaar ago | 0 answers | 0
0
answersQuestion
Showing actual values in colorbar 2D scatter plot
I make a 2D scatter plot through the code below. However my colorbar only shows values 0 to 1, in reality, my values for the col...
meer dan 3 jaar ago | 1 answer | 0
1
answerQuestion
Make a scatter plot bigger and ad legend, axis
I have the following scatter plot, created from for loops. I want to make every staple as thick as possible, like so staple 1 an...
meer dan 3 jaar ago | 1 answer | 0
1
answerQuestion
Plotting multiple plots in for loop
I have two sets of cells in the cell array AAG cell 1 has 36x1 cells, everyone of these is a 1000x1 double cell2 has 486x1 cel...
meer dan 3 jaar ago | 1 answer | 0
1
answerQuestion
Plot 3 variables on 2D plot
I have three variables that are stored like this: The growth in rated power when adding EVs for the combination of 1,2,3...36 h...
meer dan 3 jaar ago | 1 answer | 0
1
answerQuestion
Loading multiple files into matlab
I have 36 different .mat files in a folder: AAG1,AAG2,AAG3...AAG36. Each file only contain one variable called 'GUD' I want to ...
meer dan 3 jaar ago | 1 answer | 0
1
answerQuestion
Problem with adding integers
I am running 36 functions. At the 17th I get an error at this part of a loop: INCREASE2{oz}=max(HH2+double(Vehicle1{index(1)}...
meer dan 3 jaar ago | 2 answers | 0
2
answersQuestion
Sync cell arrays using unique
I have two cells GUD and GUDID, GUD is containing a 1x1000 double and GUDID contains a cell for every element in GUD. I am calc...
meer dan 3 jaar ago | 1 answer | 0
1
answerQuestion
Is the RAM memory limiting the output?
My computer has a 64 GB RAM. I recently adjusted the size of my matrices so calculations withing the function H1 is possible (wh...
meer dan 3 jaar ago | 1 answer | 0
1
answerQuestion
Reducing memory of variables
I have a 108x108 cell, each cell contains a double of 525600x1, which represents a value for every minute of the year (the valu...
meer dan 3 jaar ago | 1 answer | 0
1
answerQuestion
Help with resolving out of memory
I have a function generatin a value (Vehicle) and ID numbers (VID) for vehicles. function[Vehicle,VID]=race(ID, HHPerson,nBEV,B...
meer dan 3 jaar ago | 1 answer | 0
1
answerQuestion
Saving output from function in different categories
I have vehicles BEV, the variable can have the value BEVR, BEVU or BEVA. I have households Household, the variable can have the...
meer dan 3 jaar ago | 1 answer | 0
1
answerQuestion
Make if statement more readable
I have an if statement that looks like this if numel(intersect(VID1{index(1)},VID2{index(2)}))||numel(intersect(VID2{index(2)}...
meer dan 3 jaar ago | 1 answer | 0
1
answerQuestion
Using intersect to compare more than two values in for loop
I have a function: function [IDCELL]=c2(VID1,VID2,,A) for oz=1:nchoosek(9,2) index= A(oz,:); if numel(intersect(VID1...
meer dan 3 jaar ago | 1 answer | 0
1
answerQuestion
Intersect for multiple vectors
I have three vectors in a for loop. A=[1 2 3 7]; B=[2 2 4 6]; C=[1 3 2 5]; D=[]; I want to use intersect so that I will avo...
meer dan 3 jaar ago | 1 answer | 0
1
answerQuestion
resampling to avoid limit - nchoosek
I am investigating the combination of vehicles and houses. My equation for this is: i=nchoosek(1:numel(VID1),size(Hcombos,2));...
meer dan 3 jaar ago | 1 answer | 0
1
answerQuestion
random sampling of all possible combinations
Hi I am investigating the combination of vehicles and houses. House 1 can have one or two vehicles, House 2 can only have one. ...
meer dan 3 jaar ago | 0 answers | 0
0
answersQuestion
Using randperm in a loop
I have a 3x3 cell called VID1. I want to find all possible combinations and store them in a matrix. Currently Im using the code...
meer dan 3 jaar ago | 2 answers | 0
2
answersQuestion
How to avoid repetition in for loop that is using randi
I have the following loop where I fill IDCELL with different combinations of ID numbers. However, if a combination of ID numbers...
meer dan 3 jaar ago | 1 answer | 0
1
answerQuestion
Selecting element at same position in a matrix
VID1 is a 3x3 cell. I choose a value randomly from the cell like thus. ID1=VID1{ randi([1,size(VID1,1)],1), randi([1,size(VID...
meer dan 3 jaar ago | 1 answer | 0