photo

Kostas


Aristotle University of Thessaloniki

Last seen: plus de 2 ans il y a Actif depuis 2011

Followers: 0   Following: 0

Message

Statistiques

All
MATLAB Answers

12 Questions
16 Réponses

Cody

0 Problèmes
9 Solutions

RANG
2 503
of 300 756

RÉPUTATION
25

CONTRIBUTIONS
12 Questions
16 Réponses

ACCEPTATION DE VOS RÉPONSES
75.0%

VOTES REÇUS
5

RANG
 of 21 077

RÉPUTATION
N/A

CLASSEMENT MOYEN
0.00

CONTRIBUTIONS
0 Fichier

TÉLÉCHARGEMENTS
0

ALL TIME TÉLÉCHARGEMENTS
0

RANG
41 999
of 170 890

CONTRIBUTIONS
0 Problèmes
9 Solutions

SCORE
100

NOMBRE DE BADGES
1

CONTRIBUTIONS
0 Publications

CONTRIBUTIONS
0 Public Chaîne

CLASSEMENT MOYEN

CONTRIBUTIONS
0 Point fort

NOMBRE MOYEN DE LIKES

  • 6 Month Streak
  • Thankful Level 3
  • Knowledgeable Level 2
  • First Answer
  • Solver

Afficher les badges

Feeds

Afficher par

Réponse apportée
how to make a heatmap for a monthly time serie?
Based on the heatmap documentation tbl = readtable('heatmap.test.xlsx'); months = categorical(tbl.Var2); years = categorical(...

environ 6 ans il y a | 1

| A accepté

Réponse apportée
plot graph and bar on same figure with 2 x-asis and 2 y-axis with different scales
You need to create a second axis to plot your line. See this example Try something like the following % Create the data x1...

presque 7 ans il y a | 1

Question


How to preserve colors in histogram2
Hello all, i try to plot 5 datasets using histogram2 and hold on. I realize that the colors are not preserved (colors not showi...

environ 7 ans il y a | 1 réponse | 0

0

réponse

Question


Calculate difference from a time series
Hello all, i would appreciate your help to solve the following issue (avoiding unnecessary loops if possible). I have a time s...

plus de 10 ans il y a | 2 réponses | 0

2

réponses

Réponse apportée
Select areas of plot
u can find the latitudes you want to plot and plot just them id1 = find(lat>=0&lat<=50); % make the plot plot(lat(id1...

presque 11 ans il y a | 0

Réponse apportée
Extract data given coordinates from a map
I assume your data is a matrix of the form data(lat,lon,time) with dimension of the latitude, longitude and time. So you...

presque 11 ans il y a | 0

Question


How to make a plot
Hello i need your help to make a plot like the attached one. i have my data in separated vectors, i.e. x y and z <</ma...

presque 11 ans il y a | 2 réponses | 0

2

réponses

Question


Error in script Subscript indices must either be real positive integers or logicals.
I am trying to calculate the mean, max and min values from an array under some condition and at some specific case i get a very ...

environ 11 ans il y a | 2 réponses | 1

2

réponses

A résolu


Remove any row in which a NaN appears
Given the matrix A, return B in which all the rows that have one or more <http://www.mathworks.com/help/techdoc/ref/nan.html NaN...

plus de 12 ans il y a

Réponse apportée
Add world map background to contour plot
If you had the Map toolbox, that would be quite easy to make it. Now i would suggest you to google for the M_Map: A mapping pack...

presque 13 ans il y a | 0

Question


Plot a contour map with statistical significance
Hello, i want to make a contour map and overlay the statistical significance (actually is a matrix of 0 and 1 with the same size...

environ 13 ans il y a | 1 réponse | 0

0

réponse

Question


get numeric data from comma delimitted file
Hello i am reading a file and when i find some specific characters i want to get from that line some numbers. My problem is that...

plus de 13 ans il y a | 1 réponse | 0

1

réponse

Réponse apportée
Plot inside a for loop
well, it is like that because you don't create the x vector,it is just a value. You could try one of the both x=0:1:250; %c...

plus de 13 ans il y a | 0

| A accepté

Réponse apportée
Correlation Coefficient, RMSE
Maybe you can find help in this topic http://www.mathworks.com/matlabcentral/fileexchange/22020-goodness-of-fit-modified

presque 14 ans il y a | 0

Réponse apportée
Help with patch
Thanks for your answers, i have made the proposed alterations but i still get the same result, as can be seen in the following i...

presque 14 ans il y a | 0

Question


Help with patch
Hello, i need your help to understand how patch works. I have made a 2D plot in matlab and i would like to add some patches to i...

presque 14 ans il y a | 2 réponses | 0

2

réponses

A résolu


Is my wife right?
Regardless of input, output the string 'yes'.

presque 14 ans il y a

A résolu


Determine if input is odd
Given the input n, return true if n is odd or false if n is even.

presque 14 ans il y a

A résolu


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

presque 14 ans il y a

A résolu


Find all elements less than 0 or greater than 10 and replace them with NaN
Given an input vector x, find all elements of x less than 0 or greater than 10 and replace them with NaN. Example: Input ...

presque 14 ans il y a

A résolu


Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...

presque 14 ans il y a

A résolu


Column Removal
Remove the nth column from input matrix A and return the resulting matrix in output B. So if A = [1 2 3; 4 5 6]; and ...

presque 14 ans il y a

A résolu


Add two numbers
Given a and b, return the sum a+b in c.

presque 14 ans il y a

A résolu


Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...

presque 14 ans il y a

Réponse apportée
Calculate mean monthly from daily values
maybe smt like this could work suppose you have a matrix called data(22281,5) months are stored in second column for i=...

presque 14 ans il y a | 0

Réponse apportée
Plot multiple data sets in the same chart in which one set is plotted on another axes
Maybe this function from file exchange could help you http://www.mathworks.com/matlabcentral/fileexchange/1017-plotyyy

presque 14 ans il y a | 0

Question


create a figure with box on and x-ytick off
Hello i would like to create a graph with box on but i 'd like to remove the x-ticks from upper x-axis and y-ticks from right y-...

presque 14 ans il y a | 1 réponse | 0

1

réponse

Réponse apportée
percent residual
You could save your fitting values to workspace, using cftool choose analysis and there select the option evaluate fit at Xi (in...

environ 14 ans il y a | 0

| A accepté

Question


Help on code optimization
I have two matrices A (519840x5) and B (319966x5). Columns 2 to 4 for both contain "day of the year (format: 1-366) ", "hour (fo...

environ 14 ans il y a | 2 réponses | 0

2

réponses

Réponse apportée
Change the name of array in each iteration
Thanks, it seems so simple i just change this part C = cell(11,1); for yy=2000:2010 ii=yy-1999; ..... C{ii}=[yr...

environ 14 ans il y a | 0

Charger plus