Error: Invalid use of operator with nc files

1 vue (au cours des 30 derniers jours)
Jonas Damsbo
Jonas Damsbo le 20 Déc 2018
Commenté : Walter Roberson le 28 Déc 2018
Hi
I have a code where i run a couple of nc-files. I have make a for loop so I can run it over all the time steps and for all the longitudes and latitudes.
But I got an error called "Invalid use of opretor in the line called "zx(:,1:ny) = (:,ny:-1:1)z(n);"
I dont know why and what can I do?
I want to find blocking in the northern hemisphere where I will call if GHGS > 0 or GHGN < -10 there is a blocking. Did I have make a correct if loop?
for i = 1:Nfiles
lon{i} = ncread(ncfiles(i).name, 'longitude'); nx = length(lon{i});
lat{i} = ncread(ncfiles(i).name, 'latitude'); ny = length(lat{i});
time{i} = ncread(ncfiles(i).name, 'time'); nt = length(time{i});
z{i} = ncread(ncfiles(i).name, 'z'); nz = length(z{i});
end
%Midler geopotentialet til et månedsmiddel
zmean = zeros([nx ny]);
blocks = zeros([nx]);
for n = 1:nt
z = ncread(ncfiles(i).name,'z',[1 1 n],[nx ny 1]);
zx(:,1:ny) = (:,ny:-1:1)z(n);
zmean = zmean + zx;
%pcolor(lon,lat,z');
%shading interp
%drawnow
GHGS = (zx(:,[151+[-1 0 1]])-zx(:,[131+[-1 0 1]]))/20;
GHGN = (zx(:,[171+[-1 0 1]])-zx(:,[151+[-1 0 1]]))/20;
for i=1:ny
blocks(i)=blocks(i)+1;
if GHGS > 0;
disp('The point is blocked')
elseif GHGN < -10;
disp('The point is blocked')
end
end
end

Réponse acceptée

Jan
Jan le 20 Déc 2018
Modifié(e) : Jan le 20 Déc 2018
I have no idea, what (:,ny:-1:1)z(n) should do. Something essential is missing here. Maybe you mean - a bold guess:
zx(:,1:ny) = z(:,ny:-1:1) * z(n);
% ^ ^
In you other question this line is:
zx(:,1:ny) = z(:,ny:-1:1);
So something went wrong during editing.
By the way, follow the hints given in the editor:
% [151+[-1 0 1]] easier and more efficient:
151+[-1 0 1] % or
[150, 151, 152]
and
blocks = zeros(nx); % Without brackets
Note that this is equivalent to:
blocks = zeros(nx, nx); % not blocks = zeros(nx, 1)!
Because you use a single index running from 1 to ny:
for i=1:ny
blocks(i) = ...
I guess, that you want this instead:
blocks = zeros(1, ny); % or zeros(ny,1)
The line
if GHGS > 0;
does not need a trailing semicolon and might not do, what you expect: if requires a scalar condition, therefore Matlab evaluates implicitly:
if all(GHGS > 0) && ~isempty(GHGS)
I assume you mean GHGS(i).
  5 commentaires
Jonas Damsbo
Jonas Damsbo le 28 Déc 2018
Modifié(e) : Jonas Damsbo le 28 Déc 2018
Okay, I have found something thats maybe could say something?
If I writing return just here:
for i = 1:Nfiles
lon{i} = ncread(ncfiles(i).name, 'longitude');
lat{i} = ncread(ncfiles(i).name, 'latitude');
time{i} = ncread(ncfiles(i).name, 'time');
z{i} = ncread(ncfiles(i).name, 'z');
end
nx = length(lon{i});
ny = length(lat{i});
nt = length(vertcat(time{:}));
zmean = zeros([nx ny]);
blocks = zeros(nx);
return
%Writing the data over all time steps
for n = 1:nt
z = ncread(ncfiles(i).name,'z',[1 1 n],[nx ny 1]);
zx(:,1:ny) = z(:,ny:-1:1);
zmean = zmean + zx;
end
I can see my z variable is a cell array like this:
So it's longitudes x latitudes x time.
Are there a way to combine these cells?
Walter Roberson
Walter Roberson le 28 Déc 2018
cell2mat() can combine them. But you need to ask which dimension you want to combine them over. You would probably need to
cell2mat(reshape(z, 1, 1, []))
to combine them over the third dimension (you cannot combine them over the 4th dimension because the third dimensions do not match.)

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Loops and Conditional Statements dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by