Beantwortet
How to count the values in a column with different lower and upper bounds from excel?
I think it will be solved by using this snippet D = xlsread('data.xlsx','sheet1'); a = D(:,1:2:6); %or 2:2:6 as you proposed.....

fast 4 Jahre vor | 1

| akzeptiert

Beantwortet
Show Values on bar graph; above bar when positive values, below bar when positive values
Just add an additional line, indexing the text according to ytips2 xtips2 = b(1).XEndPoints; ytips2 = b(1).YEndPoints; ...

fast 4 Jahre vor | 1

Beantwortet
I want to export a figure but with 50% smaller Width and height
Hi Behzad, I think that rather than using the set(gcf,'Units','Normalized','OuterPosition', [0, 0.04, 1, 0.96]) you should u...

fast 4 Jahre vor | 1

| akzeptiert

Beantwortet
Import dates from csv files and plot them
Hi Sarlota As far as I can tell from your question, the problem arises in the lines DateString = datestr(str); DateNumber = ...

fast 4 Jahre vor | 0

| akzeptiert

Beantwortet
read table handling column of number values as column of strings
Hi Daniele I have provided a function for you that seems to do the trick (attached and in code-block below). Feel free to use ...

fast 4 Jahre vor | 1

| akzeptiert

Frage


Save figure userdata to a workspace variable
I have assigned some the data and metadata (and some additional stuff) as 'Userdata' to a figure in order to assure that the gra...

fast 4 Jahre vor | 1 Antwort | 0

1

Antwort

Beantwortet
How to select every 11th element in a vector?
Hi Daniel You should be able to do that using the 'reshape' function (see its help for further description). output = reshape(...

etwa 4 Jahre vor | 0

| akzeptiert