photo

LUI PAUL


Active since 2015

Followers: 0   Following: 0

Statistics

MATLAB Answers

4 Questions
10 Answers

RANK
5,380
of 299,737

REPUTATION
9

CONTRIBUTIONS
4 Questions
10 Answers

ANSWER ACCEPTANCE
75.0%

VOTES RECEIVED
3

RANK
 of 20,791

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK

of 165,655

CONTRIBUTIONS
0 Problems
0 Solutions

SCORE
0

NUMBER OF BADGES
0

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

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

View badges

Feeds

View by

Answered
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...

10 years ago | 0

Question


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 ...

10 years ago | 0 answers | 0

0

answers

Answered
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...

10 years ago | 0

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

10 years ago | 0

Answered
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.... <<...

10 years ago | 0

Answered
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...

10 years ago | 0

Question


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......

10 years ago | 2 answers | 0

2

answers

Answered
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 ...

10 years ago | 0

Answered
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 -...

10 years ago | 0

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

10 years ago | 0

Answered
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......

10 years ago | 0

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

10 years ago | 2

| accepted

Question


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...

10 years ago | 1 answer | 0

1

answer

Question


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...

10 years ago | 4 answers | 1

4

answers