How measure a 0.5 delta of a vector?

2 views (last 30 days)
Maria Amr
Maria Amr on 1 Jul 2021
Commented: Maria Amr on 1 Jul 2021
Hi everyone,
Truly appreciated to direct me in advance!
I have a vector (a signal) and I need to measure the half d of natural logarithm of the signal. How should write the code? Thank you!
RC=0.5 d ln A.
  1 Comment
Maria Amr
Maria Amr on 1 Jul 2021
Answered: KSSV, Truly appreciated! I am a very new in MATLAB:(
Thank you so much!

Sign in to comment.

Accepted Answer

KSSV
KSSV on 1 Jul 2021
Come on.....it is a simple one. Read some basics of MATLAB.
x = rand(10,1) ;
iwant = 1/2*log(x)
iwant = 10×1
-0.6282 -0.1741 -0.0227 -0.4696 -0.3884 -1.1212 -1.7144 -0.0485 -0.5902 -0.4798
  5 Comments
KSSV
KSSV on 1 Jul 2021
Then answer is not what you want.
Maria Amr
Maria Amr on 1 Jul 2021
KSSV, Thank you for all your explanation!

Sign in to comment.

More Answers (0)

Categories

Find more on MATLAB in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!