Filter löschen
Filter löschen

I want to see the text & strings in a single line of Xlabel

5 Ansichten (letzte 30 Tage)
SA
SA am 30 Mär. 2021
Kommentiert: Star Strider am 30 Mär. 2021
Hi,
I wish to see the text and string in a single line as
"Timeseries 2019-09-04T14:53:20 to 2019-09-04T15:10:00".
But I get the xlabel as 4 lines (4 different array) as
"Timeseries
2019-09-04T14:53:20
to
2019-09-04T15:10:00"
xlabel(['Timeseries' string(timestamp(end-1)) 'to' string(timestamp(end))]);
Can anybody pull me out from here? Thanks in advance

Akzeptierte Antwort

Star Strider
Star Strider am 30 Mär. 2021
Try this:
timeseries = ['2019-09-04T14:53:20';'2019-09-04T15:10:00']; % Create Array
xlabel(sprintf("Timeseries %s to %s", string(timeseries(end-1:end,:))))
.
  4 Kommentare
SA
SA am 30 Mär. 2021
I just finished the comment thanking you @VBBV
"The interesting thing is that 'Star Strider' he used the array which also works! So, both answers are correct."
Now, I'm confused which answer need to be accepted?
Thanks both of you.
Star Strider
Star Strider am 30 Mär. 2021
For my part, my pleasure!

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

VBBV
VBBV am 30 Mär. 2021
%if true
xlabel(['Timeseries' num2str(timestamp(end-1)) 'to' num2str(timestamp(end))]);
Use num2str
  5 Kommentare
VBBV
VBBV am 30 Mär. 2021
Bearbeitet: VBBV am 30 Mär. 2021
In that case convert timeseries to cell array as shown below and access the first and last values as below
%if tru
T = cellstr(timeseries);
xlabel(['Timeseries', T{1}, 'to',T{end}])
SA
SA am 30 Mär. 2021
Bearbeitet: SA am 30 Mär. 2021
This time it works! The interesting thing is that 'Star Strider' he used the array which also works! So, both answers are correct. Now, I'm confused which answer need to be accepted?
Thanks both of you.

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Data Type Conversion finden Sie in Help Center und File Exchange

Produkte

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by