Beantwortet
Where can I download all colortype images (binary, indexed, graycode, RGB) ?
I'm not sure if this is what you mean, but all the matlab example images are in this folder: C:\Program Files\MATLAB\R2013b\t...

mehr als 10 Jahre vor | 0

Beantwortet
Computation of mean and standard deviation after supressing NaNs of an array
Hi Naga, The term "average" usually encompasses several ways to measure what value best represents a sample. There are vari...

fast 11 Jahre vor | 0

Beantwortet
want to know the bytes of upperLeft image
a=whos('upperleft'); a.bytes will give you the size of the variable

fast 11 Jahre vor | 0

Beantwortet
Change Pop up menu choices when GUI is started
Fixed, Put: set(handles.popupmenu1, 'String', sheetNamesOECF); in your OpeningFcn.

fast 11 Jahre vor | 0

| akzeptiert

Frage


Change Pop up menu choices when GUI is started
I have a cell called sheetNamesOECF containing strings, this cell is updated in the main mfile, When I run the gui for the firs...

fast 11 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


any returns 0 eventhough there is a non zero element in the row
I have a cell that looks like this: measureables = 'GS_L' 'OECF' 'DYNAMIC_RANGE' 'NOISE' I do this:...

fast 11 Jahre vor | 2 Antworten | 0

2

Antworten

Beantwortet
How do I plot multiple plot using cftool in the same figure palette?
http://nl.mathworks.com/help/curvefit/cftool.html use hold all to plot multiple fits.

fast 11 Jahre vor | 0

Beantwortet
deleting rows containing NaN
Array(any(isnan(Array),2),:) = [];

fast 11 Jahre vor | 13

| akzeptiert

Frage


Problem with matrix calculation
I have the following line of code that represents the inverse function of: a+b*(100*10^-x)^c this is the x: x=double(...

fast 11 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Array divided by 255 gives me 0
I have an matrix that looks like this (but bigger) [30 29 31; 29 30 30; 30 31 30] now when I divide it by 255, ...

fast 11 Jahre vor | 2 Antworten | 0

2

Antworten

Beantwortet
Error using surf, X, Y, Z, and C cannot be complex
you were taking square roots of negative values, thus giving complex values. r=abs(sqrt((4*V.^-k)./(cos(U).^2+k*sin(U).^2)...

fast 11 Jahre vor | 0

Beantwortet
Create variable from cell array based on strings
I think this should work. I am on mobile though so I can't check it atm. index=strcmp(var1(:,1),'A'); index=index(:,an...

fast 11 Jahre vor | 0

Frage


Can't remove xlabel from top graph
Picture here: <</matlabcentral/answers/uploaded_files/28309/residuals.png>> I cant seem to delete the top graphs xlabe...

fast 11 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Problem with matlab fit
While this might not solely be a matlab problem, I guess I could still ask it here: I measured a grayscale chart with spectro...

fast 11 Jahre vor | 1 Antwort | 0

1

Antwort

Beantwortet
How can i make a Moving Average Filter of order 4 for removing the noise from signal?
We are not here to do your homework, we are here to help you if you are stuck.Please show us what you've done so far, and give u...

fast 11 Jahre vor | 0

Beantwortet
How to generate random function with respect to time ??
clc clear all close all sf=50; time=60; mag=1; S=zeros(1,sf*time); for iT=1:length(S) S(iT)=-mag+2*ran...

fast 11 Jahre vor | 0

| akzeptiert

Beantwortet
how to read img file in matlab
[Z,R] = arcgridread('Test.grd'); mapshow(Z,R,'DisplayType','surface'); xlabel('x (easting in meters)'); ylabel('y (north...

fast 11 Jahre vor | 1

| akzeptiert

Beantwortet
fft problem - how do I fix the edges?
The Fourier Transform relies on the assumption that your time domain data is periodic, so you can just repeat your time domain d...

fast 11 Jahre vor | 0

Gelöst


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

fast 11 Jahre vor

Frage


Getting data from a struct array using dynamic field references
I have a struct that looks like this: data = GS_L: {411x9 cell} GS_R: {27x9 cell} GS_U: {27x9 cel...

fast 11 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Opening multiple excelworksheets with stringnames from a cell
I have a template file who's name is Template UTT, I load and read the file like this: excelsheet = uigetfile('.xls...

fast 11 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Indexing a cell, ignoring empty inputs?
I have a cell that looks like this: 'GS_L' 'OECF' 'DYNAMIC_RANGE' 'GS_R' 'OECF' 'DYNAMIC...

fast 11 Jahre vor | 1 Antwort | 0

1

Antwort

Beantwortet
Cropping image into multiple images at certain coordinates, but the positions need verification first
The main problem for now is that Matlab should show the crop-rectangles before actually cropping them, to verify if the rectangl...

fast 11 Jahre vor | 0

Frage


Cropping image into multiple images at certain coordinates, but the positions need verification first
I have an image of a test chart that I scanned with a scanner. The thing I want to do is cut the image in to pieces (rectangles)...

fast 11 Jahre vor | 2 Antworten | 0

2

Antworten

Beantwortet
FFT gives different answers according to what axis its applied to
fft behaves the same in: clc close all clear all A=rand(1,100); B=A'; X1=abs(fft(A)); X2=abs(fft(B));...

fast 11 Jahre vor | 0

Beantwortet
How to store plotted X and Y cordinates as an images
Press the save button on the plot, then select a desired image format.

fast 11 Jahre vor | 0

| akzeptiert