How to use if statement to add if negative and minus if positive
14 次查看(过去 30 天)
显示 更早的评论
I am trying to write an if statement to add 180 if the value is negative, and minus 180 if the value is positive. I have tried the below script and it does not work! I do not know how to fix this, and was hoping someone might have an idea? get a bit stick on if statements so find it difficult to problem solve! I have also attached the bit of code beforehand for context
%% Zeros to NaN
P5LANK=PLANK;
P5LANK(P5LANK==0) = NaN;
%% Unwrap so doesn't jump at 180 degrees
P5LANK_unwrap=unwrap(P5LANK*pi/180)*180/pi;
[m,n] = size(P5LANK_unwrap);
%% Interpolate
[Ny,Nx] = size(P5LANK_unwrap);
Nz = sum(~isnan(P5LANK_unwrap)); % Determine number of non-NaN
for k = 1:Nx
P5LANK_interp(:,k) = interp1(1:Nz(k),P5LANK_unwrap(1:Nz(k),k),1:Ny,'linear','extrap');
end
%% Minus 180
for k = 1:Nx
if
P5LANK_interp(:,k) > 0
P5LANK_minus180 = P5LANK_interp(:,k) - 180;
else
P5LANK_minus180 = P5LANK_interp(:,k) + 180;
end
2 个评论
Torsten
2022-5-30
You know that
P5LANK_interp(:,k) > 0
is only true if all elements in the k-th column are >0 ?
采纳的回答
更多回答(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!