To equate one value to another?
1 次查看(过去 30 天)
显示 更早的评论
Hello! I have signal values (floating values) how do I equate them to the depth of this signal?
signal values 800 801 702 and up to 2000 depth is 14 15 11 and so on until 2000 what could I do then as a result 15 -5 and for my signal it will be like 800-264
Help me please!
4 个评论
采纳的回答
Andrei Bobrov
2019-7-10
May be like this:
Let S - your signal.
m = min(S);
detph = 10/(max(S) - m)*(S - m) + 5;
0 个评论
更多回答(0 个)
另请参阅
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!