Who can help me solve this matlab ques?
1 回表示 (過去 30 日間)
古いコメントを表示
How to solve this problem by matlab?
Start with number 5, get unknown(I) as the equally space, then I want 20 terms of number. I tried this before>> [5:3:(5+19*3)] Take 3 as the unknown(I)
1 件のコメント
Image Analyst
2015 年 6 月 25 日
Can you have a native English speaker look this over. I can't figure out what you want. Let's use x for the spacing instead of 3. So you want to solve for [5, 5+s, 5+2s, 5+19s], but I don't know what to solve for . Nothing is unknown if you specify s. If you specify the value of the last element, 5+19s, then you can solve for s. But as it is worded right now everyone (not just me) is confused.
回答 (2 件)
Kristin
2015 年 6 月 24 日
Have you tried [5:3:(5+19*3)] in matlab?
If I understand your question correct, it will give you the whanted answer.
[5:3:(5+19*3)]
ans =
5 8 11 14 17 20 23 26 29 32 35 38 41 44 47 50 53 56 59 62
7 件のコメント
Walter Roberson
2015 年 6 月 25 日
i = 1;
unknown = 3;
5:unknown(i):(5+19*unknown(i))
ans =
5 8 11 14 17 20 23 26 29 32 35 38 41 44 47 50 53 56 59 62
Nothing remarkable there?
Farzan Farzin
2018 年 10 月 30 日
Is there any one to help me in MATLAB?
3 件のコメント
Farzan Farzin
2018 年 10 月 30 日
How to implement the mu law in matlab, it means this formula x= (_1,1) and mu= 255 Y(n)= ln(1+mu)x(n)/ln(1+mu).sgn(x(n) but it is not complet formulla if you can solve it please send me your email I should send you the whole file
Walter Roberson
2018 年 10 月 30 日
https://www.mathworks.com/matlabcentral/answers/425337-mu-law-compressor-function
参考
カテゴリ
Help Center および File Exchange で Get Started with MATLAB についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!