Question


how to remove/kill the figure produced with colormap
how to remove/kill the figure produced with colormap colormap('parula')

3 years ago | 1 answer | 0

1

answer

Question


San-serif \mathsf and \textsf are not supported when using interpreter latex (in Matlab R2022a)
When I run the following example, in which I use (1) \mathsf (2) \textsf and (3) interpreter latex together, plot(rand(3,10)); ...

3 years ago | 1 answer | 0

1

answer

Question


How can I select the "Neue Helvetica" instead of the default "Helvetica" as "fontname" ?
How can I select the "Neue Helvetica" instead of the default "Helvetica" as "fontname" ? Currently I have the following: >> g...

3 years ago | 1 answer | 0

1

answer

Question


How to show the variable name instead of its value in a plot's text, when using "syms", "text" and "latex" functions
Question: By using both syms, latex and text functions/tools (as in the example here below), how can I show the variable name in...

3 years ago | 2 answers | 0

2

answers

Answered
How to "automatically" show an equation, written in the matlab editor, as a text on a plot
@Star Strider why did you delete your solution ? syms x % x = 1 : 10 ; a = 0.5 ; y = exp(-a*x); % equation to show inside t...

3 years ago | 1

Question


How to "automatically" show an equation, written in the matlab editor, as a text on a plot
%Input x = 1 : 10; a = 0.5; y = exp(-a*x); % equation to show inside the plot plot(x,y) % Desired Output Note 1: my ...

3 years ago | 5 answers | 0

5

answers

Answered
Line incorrectly connects data points in a loglog plot
a = sortrows(a,[1 2]) loglog(a(:,1),a(:,2))

3 years ago | 0

| accepted

Question


Line incorrectly connects data points in a loglog plot
Given the array "a.mat" here attached, if I plot it, i.e. plot(a(:,1),a(:,2)) I get this picture Instead, if I plot it in a...

3 years ago | 1 answer | 0

1

answer

Question


Customise axis ticks and ticks labels with exponential notation
How can I customise both axes to get this figure, with this exponential notation ?

3 years ago | 1 answer | 0

1

answer

Question


How to avoid "NaT" when converting a cell into datetime ? (Or: how to add missing parts of datetime ?)
How to avoid "NaT" when converting a cell into datetime ? (Or: how to add missing parts of datetime ?) a = [ {'14-Jul-20...

3 years ago | 1 answer | 0

1

answer

Question


How to find the most dominant frequency(ies) of time series that include datetime ?
How can I find the most dominant frequency(ies) of this time series that includes datetime ? a = { '17-Jun-2021 12:00:00',...

3 years ago | 0 answers | 0

0

answers

Question


How to find the frequencies of a time series which contain datetime ?
How to find the frequencies of a time series which contain datetime, as in the following example ? (Note: I did not find such a...

3 years ago | 2 answers | 0

2

answers

Question


A compact way to remove empty rows in a cell array matrix ?
A compact way to remove empty rows in a cell array matrix, as the following one? >> a a = 8×2 cell array {'22-Ju...

3 years ago | 1 answer | 1

1

answer

Question


Store cell arrays composed of datetimes and numbers
Description & Goal. I have several cell arrays composed of datetimes "dt" and numbers/values "n", similar to this one: [cellstr...

3 years ago | 1 answer | 0

1

answer

Question


A compact way to find single digit numbers (i.e. numbers between 0 and 9) and replace them with two digit numbers
A compact way to find single digit numbers (i.e. numbers between 0 and 9) and replace them with two digit numbers ? For example...

3 years ago | 2 answers | 0

2

answers

Answered
A compact way to extract a date from a filename and transform it into a datetime
found it: s = '20210317'; datetime(s, 'InputFormat', 'yyyyMMdd') which gives this: ans = datetime 17-Mar-2021

3 years ago | 0

| accepted

Question


A compact way to extract a date from a filename and transform it into a datetime
A compact way to extract a date from a filename and transform it into a datetime ? E.g. from '20210317.csv' to ans = date...

3 years ago | 1 answer | 0

1

answer

Answered
How to convert a graph / edges list into a shapefile (.shp) ?
@Christine Tobler Since I did not understand exactly how to perform the steps you suggested... % Matlab graph --> geolineshape ...

3 years ago | 0

Question


How to convert a graph / edges list into a shapefile (.shp) ?
How to convert a graph / edges list into a shapefile (.shp) ? Here an example of graph "G", built up with Matlab: s = [1 1 2 2...

3 years ago | 2 answers | 0

2

answers

Question


How to cluster lines ?
How to cluster lines ? Here below an example: x = [1 1 2 3 4 5 6 7 1 1 2 3 3 4 4 5 15 15 15 16 16 16 17 18 20...

3 years ago | 1 answer | 0

1

answer

Question


How do I label the bars in my histogram with the function "histogram" ?
In a similar thread a user asked: How do I label the bars in my histogram? However, that person mentioned the function hist, in...

3 years ago | 1 answer | 0

1

answer

Question


find rows in a matrix where all the elements (of those rows) are not NaN
How to finds rows in "a" where both elements of those rows (2 in this case) are numbers and not "NaN" ? a = [ NaN Na...

3 years ago | 3 answers | 0

3

answers

Answered
Compact way to extract day and hour from a datetime / datestrings format ?
Thanks a lot @Voss, your code does what I need... In my case, I did in this way and it works: t = datetime(time_array); % I fou...

3 years ago | 0

Question


Compact way to extract day and hour from a datetime / datestrings format ?
I have a cell array including datetime / datestrings data, i.e. days and hours. Here following, I show two examples related to...

3 years ago | 2 answers | 0

2

answers

Question


Suggestions on how to detect anomalies in around 200k time series, maybe with deep learning, maybe in a fast way?
I have tried Time Series Anomaly Detection Using Deep Learning, with just a few thousands of time series, but it is very slow......

3 years ago | 2 answers | 0

2

answers

Answered
Find cycles in an undirected graph
Hey @Matt J! hope this message finds you well! I am back to my post after a while :-) ... I have a quite silly question..... I ...

3 years ago | 0

Submitted


Unique function for rows with switched elements
Find unique rows in a 2-element matrix, when rows have switched elements. E.g. when row "1 5" and row "5 1" are both present.

3 years ago | 1 download |

0.0 / 5

Answered
A (possibly compact) way to find (1) unique rows, when rows have switched elements, (2) rows with switched elements, and (3) indices of rows with switched elements
This is my solution and I have created the corresponding File Exchange if interested! a = [1 2 4 5 5 1 2 1 ...

3 years ago | 0

| accepted

Question


A (possibly compact) way to find (1) unique rows, when rows have switched elements, (2) rows with switched elements, and (3) indices of rows with switched elements
I have a 2-column matrix and I would need to find the following quantites, possibly in a compact way: unique rows, even when th...

3 years ago | 3 answers | 0

3

answers

Question


different locations of y-axes and ylabels in subplots
I have 4 subplots and I would like to have: all the 4 ylabel texts (here called as "first", "second", "third" and "fourth") pe...

3 years ago | 1 answer | 0

1

answer

Load more