已回答
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.....

4 years 前 | 1

| 已接受

已回答
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; ...

4 years 前 | 1

已回答
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...

4 years 前 | 1

| 已接受

已回答
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 = ...

4 years 前 | 0

| 已接受

已回答
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 ...

4 years 前 | 1

| 已接受

提问


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...

4 years 前 | 1 个回答 | 0

1

个回答

已回答
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(...

5 years 前 | 0

| 已接受