How to calculate hurst index in matrix data?
2 次查看(过去 30 天)
显示 更早的评论
Hello everyone,
I have temperature data in matrix (360x720x120), here 120 is temperature data in 120months. I tried to run the code using hurst function using following link:
https://ch.mathworks.com/matlabcentral/fileexchange/70192-hurst-exponent?s_tid=srchtitle
It is showing some error; Error: Invalid text character. Check for unsupported symbol, invisible character, or pasting of non-ASCII characters.
How to ractify this error? I want the final outcome (map) as 360x720.
Please help me solve this. I will be thankful.
% I have tried to run the code in this way
for y=1:360,
for x=1:720,
for i=1:120,
A(i)= temperature_data(y,x,i);
H = hurst(A);
end; `
map(y,x)=H; %final outcome
end;
end;
0 个评论
回答(1 个)
Voss
2021-12-11
Notice this line (the end; corresponding to the for i=1:120):
end; `
There is a bunch of white space and a '`' character after the end;. Delete that stuff and see if it works.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Logical 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!