write number next to each other + return value 0/1

조회 수: 2 (최근 30일)
Zuzana Pániková
Zuzana Pániková 2022년 6월 14일
댓글: Zuzana Pániková 2022년 6월 17일
Hello,
i have a tablehave imported from Excel.
In the ID column I want the values ​​from hod + min + s + CasVSekundach but as text so that it doesn't add up for me (T.ID = (T.hod) + (T.min) + (T.s). It should look like in the first column: not 25 but 002525(h/min/s/CasVSekundach).
And I want to create a new column (ID_H), where the distance from the column according to criterion> 5 returns 0 and if = <5 returns 1
I try ID_H=(ID(ID>5)=1), but it doesn´t works...
Thank you for any help.
  댓글 수: 1
ILoveMATLAB
ILoveMATLAB 2022년 6월 14일
편집: ILoveMATLAB 2022년 6월 15일
For your first question.
  1. Convert each column of intrest to an array of strings. sCol1 =strings(T.hod)
  2. Concatenate all the strings arrays using the + operator T.ID = sCol1 + sCol2+ sCol3
For your second question
ID_H = double(ID>5);

댓글을 달려면 로그인하십시오.

채택된 답변

Jon
Jon 2022년 6월 14일
Let us say your table is called T, then you can use:
T.ID = string(T.hod) + string(T.min) + string(T.s) + string(CasVSekundach)
  댓글 수: 8
Zuzana Pániková
Zuzana Pániková 2022년 6월 17일
Sorry, I didn't understand the principle of the example attachment here on the site.
Zuzana Pániková
Zuzana Pániková 2022년 6월 17일
T.ID = string(T.hod) + string(T.min) + string(T.s)+(T.CasVSekundach)
I got it, I'm slow. Thanks a lot for your help.

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

ILoveMATLAB
ILoveMATLAB 2022년 6월 15일
편집: ILoveMATLAB 2022년 6월 15일
(Forgot to submit as an anwser)
For your first question.
  1. Convert each column of interest to an array of strings. sCol1 =strings(T.hod)
  2. Concatenate all the strings arrays using the + operator T.ID = sCol1 + sCol2+ sCol3
For your second question
ID_H = double(ID>5);
  댓글 수: 4
Zuzana Pániková
Zuzana Pániková 2022년 6월 17일
Thank you,now it works

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Data Type Conversion에 대해 자세히 알아보기

태그

제품


릴리스

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by