Insert time depending on sample time and measurement points into existing table

조회 수: 2 (최근 30일)
Hello,
I am trying to add time to my existing table. I have tried different methods but I am just getting started with MatLab and can't seem to figure this one out.
Where N = samples = 250.000 and ST = SampleTime = 3 and TS = Timestep = ST/N.
So I want it to add to my 6th column which I have already declared and where row 1 = 0, row 2 = 0 + TS, etc.. until I reach row 250.000 = ST.
Code I wrote for this part:
%add column6 and time to T1
T1.time = rand(250000,1);
ST = 3; %declare SampleTime
N = 250000; %SampleSize
TS = ST/N; %calc TimeStep
i = 0;
while i < N
T1(i,6) = 0 + i.*TS;
i = i + 1;
end
This would give me the error:
"Right hand side of an assignment into a table must be another table or a cell array."
I suppose it has something to do with declaration of which column the data should be placed but I have no idea how I could fix this.

채택된 답변

dpb
dpb 2021년 1월 21일
In "the MATLAB way", don't use loops where not needed...since you have end points and number, use linspace
ST = 3; %declare SampleTime
N = 250000;
T.Var6=linspace(0,ST,N);
You didn't tell us the name for the sixth column, I used the MATLAB default "VarN' form as a placeholder.
Your code has a problem in that you use regular parentheses for assignment where inside the table to write a single value you need {}. It's confusing, I know, but read the section on accessing data in a table; there's a chart that shows all the various addressing modes and what each returns.
  댓글 수: 2
Robin L
Robin L 2021년 1월 21일
Thank you! Much simpler indeed.
This is the code I use now:
ST = 3; %declare SampleTime
N = 250000; %SampleSize
Tnew=linspace(0,ST,N); %create linear space
Tnew = array2table(Tnew); %convert array to table
Tnew = table2cell(Tnew); %transpose table
Tnew = cell2table(Tnew');
T1 = [T1 Tnew]; %add Tnew to T1
T1.Properties.VariableNames{'Var1'} = 'Time_s';
Star Strider
Star Strider 2021년 1월 21일
ST = 3; %declare SampleTime
N = 250000; %SampleSize
Tnew=linspace(0,ST,N); %create linear space
T1 = [T1 table(Tnew(:))]; %add Tnew to T1
T1.Properties.VariableNames{'Var1'} = 'Time_s';
.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Test Model Components에 대해 자세히 알아보기

제품


릴리스

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by