Beantwortet
making checkboxes in uitable mutually exclusive
thank you for your suggestion. I implemented the way you showed. temp = cell2mat(Table_data(:,4)); i...

fast 14 Jahre vor | 0

Frage


making checkboxes in uitable mutually exclusive
Hello, I have a uitable with four columns and i have set columnformat of one column as logical. By that way i am having checkbo...

fast 14 Jahre vor | 2 Antworten | 0

2

Antworten

Beantwortet
Pack several files in one .p file
So this is what i did, and it works wonderfully. pcode MyAdapter pcode MyGUI MyGUI.fig as it is. Thanks you, Titus...

etwa 14 Jahre vor | 1

Frage


Pack several files in one .p file
Hi, The question was asked in 2009 in Matlab newsreader. http://www.mathworks.com/matlabcentral/newsreader/view_thread/26023...

etwa 14 Jahre vor | 2 Antworten | 0

2

Antworten

Frage


Optimizaation problem in matlab
Hi, I have a function in matlab which is dependent on four variable ( x1,x2,x3 and x4). I want to optimize the function outpu...

etwa 14 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


place uitable in a GUI by code ?
Dear all, I have a GUI, the results of which i want to display in a uitable. The size of my table depends on parameters taken...

etwa 14 Jahre vor | 1 Antwort | 0

1

Antwort

Beantwortet
assigning color to binary image
first of all if your image is binary, you cant have values from 1 to 7. if you have image with values 1 to 7, first you have la...

etwa 14 Jahre vor | 0

Beantwortet
Transfer to IDL
write your variable in a txt file and read it in idl !

etwa 14 Jahre vor | 0

Beantwortet
classification of satellite images
read your image with imread if it is tiff or with multiband read if it is binary and do the classificaation. for k means doc...

etwa 14 Jahre vor | 0

Beantwortet
classification of satellite images
I have a different answer to this. If you have statistics toolbar you can perform clustering like k-means. if you have ANN...

etwa 14 Jahre vor | 0

Frage


displaying classification image
hello community, I have a classified image with class labels 1, to 5. I want to display it with different colors. I can do th...

etwa 14 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


ANN , accuracy retrival from plotconfusion figure
Hello community, I am doing image classification using ANN backpropagation. So far so good. After training my net i am displa...

etwa 14 Jahre vor | 0 Antworten | 0

0

Antworten

Frage


Artificial Neural Network back propagation image classification
Hello community, I have novice in ANN, so please bare with me. I have a image[mxnxp]which i want to classify with ANN back...

etwa 14 Jahre vor | 2 Antworten | 0

2

Antworten

Beantwortet
Difficulty displaying canopy height data from a .tif file
when dispalying the matrix, use imshow ( A,[]) ; where A is your matrix which has your tif data !

mehr als 14 Jahre vor | 0

| akzeptiert

Frage


data cursor mode in GUI
[EDIT: 20110722 11:46 CDT - reformat - WDR] In normal way without any gui this works. fig1= figure; imshow (Photo) dcm_o...

mehr als 14 Jahre vor | 2 Antworten | 0

2

Antworten

Frage


Zooming in axes in GUI causes axes to expand.
I have a axes where I am plotting my XYZ data using plot3(X,Y,Z,,'b.'). So far so good, but when I want zoom in on the axes, th...

mehr als 14 Jahre vor | 5 Antworten | 0

5

Antworten

Beantwortet
Adding each row to previous row in a vector-Not Cumulative
A=[2 1 7 9 4]; B = A(1:end-1)+diff(cumsum(A));

mehr als 14 Jahre vor | 0

| akzeptiert

Frage


writing binary data with matlab !
I want to write some values in a binary format so that I can open in a specific software. I want to write it after skipping cert...

mehr als 14 Jahre vor | 1 Antwort | 2

1

Antwort

Beantwortet
Using a text file to title a plot.
you can also use like this: header{1} ='label'; header{2} ='x vs y'; title ( header)

mehr als 14 Jahre vor | 0