Community Profile

photo

LUI PAUL


Aktiv seit 2015

Statistiken

  • First Review
  • Thankful Level 1
  • Knowledgeable Level 1
  • First Answer

Abzeichen anzeigen

Content Feed

Anzeigen nach

Beantwortet
Save plot on top of an image.
Is this what you are looking for? uiopen('C:\black.gif',1)%first image imshow('black.gif'); [x,y] = ginput% select your...

fast 9 Jahre vor | 0

Frage


how to change grid value of data to make smooth spatial plot?
I have 40 brightness temperature(BT) data(mat files) of size 2805*2816 and latitude,longitude of same size.Each value of the BT ...

fast 9 Jahre vor | 0 Antworten | 0

0

Antworten

Beantwortet
how i can plot graph?
for 3D plots: %1.general A=[1 4 5 7;2 3 5 1]; B=[1 4 5 7;2 3 5 1]; C=[11 5 3 10;4 9 6 4]; plot3(A,B,C); %2.Mesh Pl...

fast 9 Jahre vor | 0

Beantwortet
Counting cells in image
you can follow this link... <http://in.mathworks.com/help/vision/examples/cell-counting.html image cells>

fast 9 Jahre vor | 0

Beantwortet
How can I copy lines of code from pdf to Matlab
if u have foxit reader software to open the pdf,follow the figure i have uploaded and select all(Ctrl+A) and copy it.... <<...

fast 9 Jahre vor | 0

Beantwortet
how to generate vector [0:0.01:1] using linspace command
hello John first u have to know the number of points between 0 and 1,only then u can use this command... A=linspace(0,1,1...

fast 9 Jahre vor | 0

Frage


changing y limit of a plot
i have x column matrix...the plotting is shown...how to change y axis limit between 0 to 1 not changing x values? please help......

fast 9 Jahre vor | 2 Antworten | 0

2

Antworten

Beantwortet
Inserting data of one matrix into another
try simple a=[0;0;1;1;0;0]; b=[5;6]; p=find(a>0); a(p)=b a = 0 0 5 6 0 ...

fast 9 Jahre vor | 0

Beantwortet
Matlab 2013a and Excel
if this is your excel data(say) -3 -2 -1 0 1 2 3 0 2.1 5 4 2.5 3 8 -...

fast 9 Jahre vor | 0

Beantwortet
how to read data from a .mat file
to get conjugate load('Eyla.mat'); Eyla=conj(Eyla);

fast 9 Jahre vor | 0

Beantwortet
how to read data from a .mat file
for other directory..... load('D:\data_file\Eyla.mat') for current directory load('Eyla.mat'); or follow the figure......

fast 9 Jahre vor | 0

Beantwortet
Sine curve fitting for the given data
try this cftool(data11(:,1),data11(:,2)); and follow the figure << <</matlabcentral/answers/uploaded_files/28181/...

fast 9 Jahre vor | 2

| akzeptiert

Frage


how to find nearest distant points for two unequal sized pair of data
I have two set of points set1>>{A1(6840*1),B1(6840*1)} and set2>>{A2(10227*1),B2(10227*1)}. I want to find the nearest distant...

fast 9 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


how to find nearest values of all elements of a matrix to another matrix in matlab
hi all, i have 2 matrices of different size(11527*1 and 112813*1) .i want to find the nearest values(distance between the two e...

fast 9 Jahre vor | 4 Antworten | 1

4

Antworten