photo

Alka Nair

MathWorks

Actif depuis 2014

Followers: 0   Following: 0

Message

Engineer at MathWorks

Statistiques

All
MATLAB Answers

0 Questions
23 Réponses

Cody

0 Problèmes
38 Solutions

RANG
883
of 300 338

RÉPUTATION
88

CONTRIBUTIONS
0 Questions
23 Réponses

ACCEPTATION DE VOS RÉPONSES
0.00%

VOTES REÇUS
28

RANG
 of 20 922

RÉPUTATION
N/A

CLASSEMENT MOYEN
0.00

CONTRIBUTIONS
0 Fichier

TÉLÉCHARGEMENTS
0

ALL TIME TÉLÉCHARGEMENTS
0

RANG
13 857
of 168 149

CONTRIBUTIONS
0 Problèmes
38 Solutions

SCORE
400

NOMBRE DE BADGES
2

CONTRIBUTIONS
0 Publications

CONTRIBUTIONS
0 Public Chaîne

CLASSEMENT MOYEN

CONTRIBUTIONS
0 Point fort

NOMBRE MOYEN DE LIKES

  • 3 Month Streak
  • Knowledgeable Level 2
  • First Answer
  • Promoter
  • Solver

Afficher les badges

Feeds

Afficher par

Réponse apportée
How can I read a .json file?
fname = 'meta_Electronics.json'; fid = fopen(fname); raw = fread(fid,inf); str = char(raw'); fclose(fid); val = jsond...

presque 8 ans il y a | 22

| A accepté

Réponse apportée
ROC of multiclass classification in MATLAB
Hi, The PERFCURVE function can be used to plot the ROC for AdaBoostM2. Please see the documentation of function PREDICT, to...

plus de 10 ans il y a | 1

Réponse apportée
Adding proper label names to confusion matrix created with plotconfusion function:
Hi, >> p = plotconfusion(t,y) gives a figure object p which has 2 children , one is uicontrol and the other is axis. By ...

plus de 10 ans il y a | 1

| A accepté

Réponse apportée
How to plot a polygon in real time using the coordinates I receive from a gps receiver?
Hi, Please refer to the MATLAB File Exchange submission in the following link: http://uk.mathworks.com/matlabcentral/file...

plus de 10 ans il y a | 0

| A accepté

Réponse apportée
Plot a Time Serie of the price of a share
You can use time Series Objects to plot time series data. Please refer to the documentation at the following page: http://in....

plus de 10 ans il y a | 0

Réponse apportée
I bulit my first LSF cluster, now I need to add matlab to it
The page in the below mentioned link explains configuring cluster for platform LSF: http://in.mathworks.com/help/mdce/co...

plus de 10 ans il y a | 0

Réponse apportée
Generate binary image of geometric shapes?
Hi, For generating geometric shapes in binary images use STREL to create the structuring element, for example, suppose you ...

plus de 10 ans il y a | 2

Réponse apportée
I have a problem with setup about "c++ to use matlab"
Hi, mex -setup takes a language setting only from MATLAB 8.4(R2014a). Please refer to the following release notes: http:/...

plus de 10 ans il y a | 0

Réponse apportée
Interpolation between three sets of data
Hi, Interpolation can also be done for multidimensional data. Please refer to the documentation page for INTERP2 and INTERP...

plus de 10 ans il y a | 0

Réponse apportée
why do i get the segmentation error while running a mex file? how do i solve this?
Hi, Please see the debugging steps mentioned in the following page: http://www.mathworks.com/matlabcentral/answers/97261-...

plus de 10 ans il y a | 1

Réponse apportée
How to crop image containing number on license plate?
Hi, You could use the function IMCROP to crop images. Its an interactive tool in which you can use resizable rectangles to d...

plus de 10 ans il y a | 0

Réponse apportée
How to use mvnrnd function ?
The documentation of MVNRND suggests that the syntax is >> r = mvnrnd(MU,SIGMA,cases) and r = mvnrnd(MU,SIGMA,cases) returns...

plus de 10 ans il y a | 0

| A accepté

Réponse apportée
Where can I find this model
Hi Yujia, Both the models that you have mentioned are available in MATLAB 8.2(R2013b) and they are available in Matla...

plus de 10 ans il y a | 0

Réponse apportée
Run Queue of Operations in Parallel
Hi Royi Avital, The BLOCKPROC function from the Image Processing Toolbox processes the images by applying the function ...

plus de 10 ans il y a | 0

Réponse apportée
Help with saving a .txt file
Use FSCANF function to read data from text file to MATLAB. Please refer to the following link to find information on FSCANF: ...

plus de 10 ans il y a | 0

Réponse apportée
webcam support problem - on windows xp system
I understand that you are getting an error using the webcamlist command in the command window. The Webcam feature uses Media Fou...

plus de 10 ans il y a | 0

| A accepté

Réponse apportée
How to convert results in table format?
I understand that you would like to convert the arrays to table. Please refer to the following documentation for ARRAY2TABLE at:...

plus de 10 ans il y a | 0

| A accepté

Réponse apportée
how to calculate the AUC of a classifier
I understand that you would like to know how to find the Area under the Curve for ROC using MATLAB. If you have the true positiv...

plus de 10 ans il y a | 0

Réponse apportée
Compare two image with different size
I understand that you would like to compare two images of different size. Please refer to the documentation of IMSHOWPAIR at the...

plus de 10 ans il y a | 0

| A accepté

Réponse apportée
SVM classification for satellite image
You could refer to the following link in documentation to understand how to perform classification using SVM in MATLAB: http:...

plus de 10 ans il y a | 0

Réponse apportée
"Error using quiver"???
When the input argument to DOUBLE function is a symbolic expression, MATLAB will output the error message you received. In t...

plus de 10 ans il y a | 0

Réponse apportée
creating a custom color map
The 'colormapeditor' helps in displaying the current figure's colormap and customizing it. To find more information about colorm...

plus de 10 ans il y a | 1

Réponse apportée
Fitting Tool or Time Series Tool
I understand that you would like to predict housing prices based on a data set that you already have. If the data is time depe...

environ 11 ans il y a | 0

| A accepté

A résolu


Find the longest sequence of 1's in a binary sequence.
Given a string such as s = '011110010000000100010111' find the length of the longest string of consecutive 1's. In this examp...

environ 11 ans il y a

A résolu


Remove the vowels
Remove all the vowels in the given phrase. Example: Input s1 = 'Jack and Jill went up the hill' Output s2 is 'Jck nd Jll wn...

plus de 11 ans il y a

A résolu


Swap the input arguments
Write a two-input, two-output function that swaps its two input arguments. For example: [q,r] = swap(5,10) returns q = ...

plus de 11 ans il y a

A résolu


Nearest Numbers
Given a row vector of numbers, find the indices of the two nearest numbers. Examples: [index1 index2] = nearestNumbers([2 5 3...

plus de 11 ans il y a

A résolu


Distance walked 1D
Suppose you go from position 7 to 10 to 6 to 4. Then you have walked 9 units of distance, since 7 to 10 is 3 units, 10 to 6 is 4...

plus de 11 ans il y a

A résolu


Target sorting
Sort the given list of numbers |a| according to how far away each element is from the target value |t|. The result should return...

plus de 11 ans il y a

A résolu


The Hitchhiker's Guide to MATLAB
Output logical "true" if the input is the answer to life, the universe and everything. Otherwise, output logical "false".

plus de 11 ans il y a

Charger plus