Réponse apportée
Runtime loading of shared libraries
Use <http://tldp.org/HOWTO/Program-Library-HOWTO/shared-libraries.html ldconfig> or use MATLAB's <http://www.mathworks.com/help/...

environ 13 ans il y a | 0

Réponse apportée
Extracting subsets of structs from HDF5 files
Steve, You would have to use the low-level functions. I believe it can be done, but its a bit more complex than what I could ...

environ 13 ans il y a | 0

Réponse apportée
I have a problem with ncread, OPeNDAP and 4-dim data
Remon, I am not sure what is happening here. The error code appears to indicate a server side error <https://www.unidata.ucar.ed...

environ 13 ans il y a | 0

Réponse apportée
Opening netcdf - Only displays one cell
Grant, To read data, your best bet is to use <http://www.mathworks.com/help/matlab/ref/ncread.html |ncread|>. >> landcov...

environ 13 ans il y a | 0

Réponse apportée
how to read a time series data at a particular (x, y) grid cell in a netcdf file
Look at <http://www.mathworks.com/help/matlab/ref/ncread.html |ncread|> (and <http://www.mathworks.com/help/matlab/ref/ncdisp....

environ 13 ans il y a | 2

Réponse apportée
Converting multilayer grayscale tiff images to JPG2000
The warning is telling you that there was some tag in the file that the reader could not interpret. It is most likely some custo...

environ 13 ans il y a | 0

Réponse apportée
error using netcdf.putVar
Try adding a call to end the definition using <http://www.mathworks.com/help/matlab/ref/netcdf.enddef.html |netcdf.enddef|> afte...

environ 13 ans il y a | 0

| A accepté

Réponse apportée
coordinates of the farthest point from centroid
Air code: [maxRadius, maxRadiusIndex] = max(distances) maxPointCoord = thisBoundary(maxRadiusIndex,:) Loo...

environ 13 ans il y a | 0

| A accepté

Réponse apportée
filling a netcdf file
To read: * <http://www.mathworks.com/help/matlab/ref/dlmread.html |dlmread|> * <http://www.mathworks.com/help/matlab/ref/tex...

plus de 13 ans il y a | 0

Réponse apportée
Read multiple netcdf files with variable names
You could think of something along these lines: (air code, as in I havent tested it) modelNames = {'m1, m2}; varNames...

plus de 13 ans il y a | 0

Réponse apportée
How to put a String in a dataset attribute
Second example <http://www.mathworks.com/help/matlab/ref/h5d.write.html h5d.write> doc page shows how to write strings. (using c...

plus de 13 ans il y a | 0

Réponse apportée
can lossless jpeg2000 format picture size be LESS than lossy jpeg2000 format of same picture
You could read both back and compare against the one your wrote out to verify the lossy/lossless nature for yourself. The com...

plus de 13 ans il y a | 1

Réponse apportée
How do I use NCWRITE to write an entire variable?
Update your third input argument to have the same size as the variable in the file that you are writing to. For example, if y...

plus de 13 ans il y a | 0

| A accepté

Réponse apportée
Creating netCDF files: How can I set the order of the dimensions in a field?
%Account for moving from Column major to Row major ordering colMajorDims = [dim_dim1 dim_dim2 dim_dim3]; rowMaj...

plus de 13 ans il y a | 0

| A accepté

Réponse apportée
Save matrix as image format file
If you have a current version of MATLAB, the |Tiff| class provides a way to write multi sample image data. Note: This is a di...

plus de 13 ans il y a | 0

Réponse apportée
Trying to use a for loop to capture data from netCDF output, and then average the data
Tyler Herrington: I solved the issue by changing the SeaIceVol(A):SeaIceVol(B) into a series of commas: for i=1:50...

plus de 13 ans il y a | 1

Réponse apportée
Trying to write a variable varying with 3 dimensions to MatLab
vNID will have a dimension of nt by nlat by nlon. But you are trying to write the variable S which is sulph(1,:) (just a column ...

plus de 13 ans il y a | 0

Réponse apportée
reading and working with .im7 image files
This <http://www.mathworks.com/matlabcentral/fileexchange/10902-pivmat-2-12/content/pivmat/html/loadvec.html FEX> submission cla...

plus de 13 ans il y a | 0

Réponse apportée
Finding Circles in an Image. Hough Transform, Tao's CircularHough_Grd algorithm, Matlab's infindcircles
I was able to get the sphere and some false positives with: [c, r] = imfindcircles(I, [18 22], 'ObjectPolarity','dark','Sens...

plus de 13 ans il y a | 0

Réponse apportée
Need help with Ncwrite
The second example of <http://www.mathworks.com/help/matlab/ref/ncwrite.html ncwrite> could be of some help. Note that your ...

plus de 13 ans il y a | 0

| A accepté

Réponse apportée
NN in matlab
" Do you have this: http://www.mathworks.com/products/neural-network/index.html "

presque 14 ans il y a | 0

Réponse apportée
Format distance tool label to centimeter.
" The distance tool reports in pixels for a very good reason: An image doesn't have *physical* distance by itself. Real-worl...

presque 14 ans il y a | 0

Réponse apportée
Image processing for crater detection
"This seems like an interesting problem. I suppose, for the thresholding, the way they calculate the limits Rm, Rmin and Rmax ne...

presque 14 ans il y a | 0

Réponse apportée
error running at fist instant
"sir ,I changed those A letters to another letter B ,IT WORKS NOW"

presque 14 ans il y a | 0

Réponse apportée
Subtracting the first frame of a movie from all the others....using imsubract maybe?
"HEY i DID IT USING " M = mmreader('cell.avi'); N = M.NumberOfFrames; for ii = 1:N A=imsubtract(M.read(1),M.r...

presque 14 ans il y a | 0

Réponse apportée
combining number of images using matlab
You could look at <http://www.mathworks.com/help/toolbox/images/ref/imfuse.html |imfuse|> and see if it helps combine two images...

presque 14 ans il y a | 1

Réponse apportée
Generating mex file from Matlab code containing regionprops
Try function outVar = myapp %#codegen coder.extrinsic('imread'); coder.extrinsic('regionprops'); idxList...

environ 14 ans il y a | 0

| A accepté

Réponse apportée
How to get Image information (imtool) - Image description using command prompt function
Look at <http://www.mathworks.com/help/techdoc/ref/imfinfo.html |imfinfo|>.

environ 14 ans il y a | 0

| A accepté

Réponse apportée
Extract multiple radius from an image
If you have the newer version with the Image Processing Toolbox, the imfindcircles might be useful (depending on the 'circularit...

environ 14 ans il y a | 0

Réponse apportée
Readint in multiple .cdf files from a text file
# You want <http://www.mathworks.com/help/techdoc/ref/cdfread.html |cdfread|> not |netcdf.open| to read CDF files. # It looks l...

environ 14 ans il y a | 0

Charger plus