accelerating a function that spends a lot of time in ncread

2 Ansichten (letzte 30 Tage)
John
John am 14 Sep. 2018
Kommentiert: youn am 6 Mär. 2019
The Matlab profiler shows a function I wrote spends most of its time executing ncread many times to get scalers and array subsets from a single file (actually a NetCDF THREDDS aggregation). My question is: Might I get a significant speed-up using lower level functions, i.e. open the file once with netcdf.open, use netcdf.getVar for reads, and then close it?
  1 Kommentar
youn
youn am 6 Mär. 2019
Hello
did you find a solution for the ncread speed?
I have the same problem here
thanks a lot

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Stephen
Stephen am 14 Sep. 2018
You might.
Have you tried a simple script encasing your proposed netcdt.open and .getVar calls inside the "tic" and "toc"?
It is unclear from the data provided. How many times are you calling ncread? How much time does it take per call? I would compare the profiler results against tic/toc benchmarking of the commands you're thinking of using. If the new functions take a lot less time, it might be worth modifying your code to use those commands.

Community Treasure Hunt

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

Start Hunting!

Translated by