Thank you very much, i did it already , but i am really thankful for your time
m=1:24*(T^-1);
2 ビュー (過去 30 日間)
表示 古いコメント
Please explain theequation what is it mean and why it is used in programming
m=1:24*(T^-1);
採用された回答
Chunru
2021 年 9 月 11 日
T = 2 % Given a number T
T^-1 % T^-1 is 1/T
m=1:24*(T^-1) % m is from 1 to 24/T=12 with default step of 1
0 件のコメント
その他の回答 (1 件)
Walter Roberson
2021 年 9 月 11 日
In context, is T a scalar floating point value that is expected to be less than 1 ?
If so, then the code would be equivalent to
m = 1 : 24./T;
which would be equivalent to
m = 1 : floor(24./T);
which would be the list of integers, 1, 2, 3, 4, ... up to floor(24./T)
The reason for the code is not clear. In most cases in which something that looks like this might be used, the variable T would instead be named Fs or FS or fs (frequency of sampling) or else f (frequency). T tends to suggest a time, and it would be uncommon to want to do something until the inverse of a time.
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!