Respondida
Normalizing data
Dear John, Lets say you have matrix D and you want to normalize each value of Column to unit length (between 0-1). One possib...

alrededor de 14 años hace | 4

| aceptada

Respondida
how to find euclidean distance for an image
Dear Fir, You have Query image Q, you want to compute euclidean distance of Q with all images in database. Is that you want ? I...

alrededor de 14 años hace | 1

Respondida
how to find euclidean distance for an image
Dear FIR, Similar question was asked by one fellow. The solution you can see from following URL. I hope it might help you. ...

alrededor de 14 años hace | 1

Respondida
How to Envelope a Dataset?
Dear Aviator, Sorry I was away so could not reply on time. Actually you can play trick with this. k = convhull(x,y) So ...

alrededor de 14 años hace | 2

| aceptada

Respondida
How to extract the keyframes from video?
Dear Pan, There are so many easy and complex ways. The best and the simplest is based on Entropy. You calculate the Entropy o...

alrededor de 14 años hace | 2

| aceptada

Respondida
How to Envelope a Dataset?
Dear Aviator, Actually your problem is quite related to finding the Convex hull. The data points you have shown are not good en...

alrededor de 14 años hace | 2

Respondida
constant line in output, while plotting data
Dear the constant line is getting as your last point might be outlier. You can simply remove that line by this code. plot(tim...

alrededor de 14 años hace | 2

Respondida
IMAGE SEPARATION INTO BLOCKS
Dear as in obove code division is n't correct .. follow this code let say your image is I of 256 x 256. Make your your grid whi...

alrededor de 14 años hace | 3

| aceptada

Respondida
how to divide an image into blocks
Dear Pat, mat2cell is the only easy solution for your question. You are getting this error because your the mod of your IMG a...

alrededor de 14 años hace | 2

Respondida
Is '.-' no longer a valid line format for plots?
Dear Sir, I am not sure for older versions. You still can use this format for line and marker in plots. plot(1:10,'.-') % is ...

alrededor de 14 años hace | 2

Respondida
"FOR" loop
p=primes(100); A = zeros(1,length(p)-1); for i=1:length(p)-1 A(i) = p(i) * p(i+1); end A just copy and past...

alrededor de 14 años hace | 2

Respondida
"FOR" loop
let say your prime vector is P; p=primes(100); a = zeros(1,length(p)-1); for i=1:length(p)-1 a(i) = p(i) * p(i+1); e...

alrededor de 14 años hace | 2

Respondida
hi, im trying to produce the answer for this equation in vector. example for a[1 2 3 4 5], im expecting my answer to be y[0 4 8 10 12.5]. can anyone help me to explain about this?thanks
I don't your formula to produce y. But to get equal length vector to a, you should do like this. a=[1 2 3 4 5]; y=size(a...

alrededor de 14 años hace | 2

| aceptada

Respondida
How to plot 3 garph in one figure?
Well, if you want to draw three different graph figures into one figure then you can use subplot. ex: let say I have two graphs...

alrededor de 14 años hace | 2

Respondida
Import from .arff to matlab
Dear Mani, I didn't test this but hopefully it will solve your problem. Check this link below. Do let us know if it worked. ...

alrededor de 14 años hace | 2

| aceptada

Respondida
Path, Current Directory, "exist" and "which" functions
Dear I guess it depends on your current directory. Let say you are in studies_1/ directory. then load ('data/file.mat'); ...

alrededor de 14 años hace | 2

Respondida
Recursive gaussian filter vs traditional gaussian filter
As I understand your code and question. you have kernel variable. Kernel =[1, 4, 7, 4, 1, 4, 16, 26, 16, 4, 7, 26, 41, 26, 7,...

alrededor de 14 años hace | 1

Respondida
Graphing problem
Dear Courtney, Whenever you copy code please make it proper so that reader can read and then execute if needed. something lik...

alrededor de 14 años hace | 1

Respondida
choosing region of interest of an image (cropping problem)
Dear you just have to drag the mouse to make rectangle and then right click and select "Copy position". The cropped region will...

alrededor de 14 años hace | 5

Respondida
how to find Euclidean distance in matlab?
Dear what is the size of your feature vector, if it is column vector then let say your have 1000 feature vector of 1000 images. ...

alrededor de 14 años hace | 1

| aceptada

Respondida
To apply Gaussian in histogram?
Dear I guess you have histogram and you want to apply gaussian weight to it. If it is so then let say you have Histogram H. then...

alrededor de 14 años hace | 2

| aceptada

Respondida
if statement logical error
Dear when I execute your code, i get the if part not else part. I also checked your all conditions and all conditions are true. ...

alrededor de 14 años hace | 0

Respondida
How to convert a .tif file into a .mat file?
If it is so, then you simply convert that tiff into mat file like this.. let say tif file name is "Example.tiff"; A = imread...

alrededor de 14 años hace | 2

| aceptada

Respondida
"double" vs. "uint8" input using "imshow" function
uint8 is used unsigned 8 bit integer. And that is the range of pixel. We can't have pixel value more than 2^8 -1. Therefore, for...

alrededor de 14 años hace | 12

Respondida
folder in a directory
A = dir % you get everything in current directly of matlab. or if you want to explicitly mention any directory path then you ...

alrededor de 14 años hace | 1

| aceptada

Pregunta


Handling multi figures.
I have saved three figures in my system. Figure1.fig, Figure2.fig, and Figure3.fig. Now I want to load this figures and ...

alrededor de 14 años hace | 1 respuesta | 1

1

respuesta

Respondida
The code does not work with 1.7
Anyway you can do what ever you want from this simple one lines. v =hist(y,[1:.1:2]) This is simple. Take the histgram. ...

alrededor de 14 años hace | 1

Respondida
Equality error
Dear for comparing the string you should use *strcmp* function. ex. a(1).name ='2pm'; a(2).name='SNSD'; a(3).name = '2p...

alrededor de 14 años hace | 1

| aceptada

Respondida
Array/Data Strucutre Returns Problem
I think you can't compare two string with == . You will get dimensions mismatch. As for string '2pm' the length = 3 and for 'SNS...

alrededor de 14 años hace | 1

| aceptada

Respondida
random number generator
Yes you can do it for non repeating randoms. One possible way is which chandra suggested above. But if you want to avoid loops t...

alrededor de 14 años hace | 1

| aceptada

Cargar más