photo

B.k Sumedha


Last seen: presque 5 ans il y a Actif depuis 2015

Followers: 0   Following: 0

Message

Statistiques

All
MATLAB Answers

12 Questions
44 Réponses

Cody

0 Problèmes
8 Solutions

RANG
1 186
of 301 914

RÉPUTATION
63

CONTRIBUTIONS
12 Questions
44 Réponses

ACCEPTATION DE VOS RÉPONSES
33.33%

VOTES REÇUS
12

RANG
 of 21 457

RÉPUTATION
N/A

CLASSEMENT MOYEN
0.00

CONTRIBUTIONS
0 Fichier

TÉLÉCHARGEMENTS
0

ALL TIME TÉLÉCHARGEMENTS
0

RANG
46 730
of 177 341

CONTRIBUTIONS
0 Problèmes
8 Solutions

SCORE
90

NOMBRE DE BADGES
1

CONTRIBUTIONS
0 Publications

CONTRIBUTIONS
0 Public Chaîne

CLASSEMENT MOYEN

CONTRIBUTIONS
0 Point fort

NOMBRE MOYEN DE LIKES

  • Knowledgeable Level 3
  • First Review
  • Thankful Level 1
  • Knowledgeable Level 2
  • First Answer
  • Solver

Afficher les badges

Feeds

Afficher par

Question


How to implement Geodesic Active Countours
How to implement Geodesic Active Countours?Is there any helpful link regarding this.

plus de 10 ans il y a | 1 réponse | 0

0

réponse

Réponse apportée
How to save recorded audio on computer
Right click on the matlab icon and run as administrator.Try this for a solution. If that does not work try out this one. <h...

plus de 10 ans il y a | 0

Réponse apportée
How can i segregate the horse object(foreground object) by eliminating its background? How can i do it?
You can have a try at the Matlab File Exchange where you can find lot more of files regarding this. One of which i found was <h...

plus de 10 ans il y a | 0

Réponse apportée
How to have 2 different appearances to Axes4 and Axes5 for SKIN DETECTION? Why Error?
In your 3rd line of the code again your specifying I. I=get(proyek.axes3,'Userdata'); I hope that needs to change to ...

plus de 10 ans il y a | 0

| A accepté

Réponse apportée
How do make the guide?
I hope you are looking for something like this. 1) First create a folder named 'Frames'(without quotes) in your current direc...

plus de 10 ans il y a | 0

Question


Unable to load DLL mclmcrrt78.dll
I am using a dot net application and matlab for the project Online Signature Verification . This is the link from where i found...

plus de 10 ans il y a | 1 réponse | 0

0

réponse

Réponse apportée
Need help on my DCT and Quantization code for Image Compression.
I = imread('cameraman.tif'); I = im2double(I); T = dctmtx(8); B = blkproc(I,[8 8],'P1*x*P2',T,T'); ...

plus de 10 ans il y a | 0

Réponse apportée
How to skip the no of frames in a video
Use read option to read only particular frames.Remaining files will be discarded automatically. v = VideoReader('xylophon...

plus de 10 ans il y a | 0

Question


How to interface a fingerprint device into matlab.
Presently i am working on a project of fingerprint recognition and matching.For this i am integrating an fingerprint device(digi...

plus de 10 ans il y a | 1 réponse | 0

0

réponse

Réponse apportée
i am trying to read the .wav file through "wavread" giving path of wave using following code but it always give error 67(i-e ??? Error using ==> wavread at 67 Cannot open file)
You can directly use y = wavread('filename') y = wavread('filename') loads a WAVE file specified by the string filename...

presque 11 ans il y a | 0

Réponse apportée
how can get this numbers in to array and the text in another array
You can use the string split function for that seperation.See this particular mathworks page. <http://in.mathworks.com/help/mat...

presque 11 ans il y a | 0

Réponse apportée
i want to develop an project on text to speech for blind
Searching the file exchange would be best.

presque 11 ans il y a | 0

Réponse apportée
how to read the code in a method file such as 'CPFSKModulator.p'....open '_____' does not work
Go through this thread.The .p extension files are protected files and it cant be just read by using 'open' command. <https://...

presque 11 ans il y a | 0

Réponse apportée
Combining individual GUI into single GUI using tabs
Check out this File exchange. <http://www.mathworks.com/matlabcentral/fileexchange/25938-multiple-tab-gui>

environ 11 ans il y a | 0

| A accepté

Réponse apportée
How to solve two variable equations using matlab?
It looks like MATLAB versions compatibility issue: < <http://in.mathworks.com/matlabcentral/newsreader/view_thread/337715> >...

environ 11 ans il y a | 0

Réponse apportée
I don't know this watermarking code~ please explain code~
I apologize for not replying to your previous query. Its just that after this : figure,imshow(uint8(dec2d));title('DWT2 ...

environ 11 ans il y a | 0

Réponse apportée
How to change color of box with bar function?
U can use this. b=bar(x,diag(y),'stacked');

environ 11 ans il y a | 0

| A accepté

Réponse apportée
How can I make some action on listbox by double clicking?
There is a good example in mathworks documentation only.You can have a look at this . <http://in.mathworks.com/help/matlab/cr...

environ 11 ans il y a | 1

Réponse apportée
How to detect watermarking in DWT~ Include matlab source~ please help me~~
clc close all %host rgbimage=imread('host.jpg'); figure;imshow(rgbimage);title('original color image'); ...

environ 11 ans il y a | 0

| A accepté

Réponse apportée
how to get confusion matrix when neural network toolbox is used?
As soon as you train the network you get the option to plot the confusion matrix.Take a look at this pdf. <http://www.mathwor...

environ 11 ans il y a | 0

Réponse apportée
how can set "off" the visibility of axes in gui
set(handles.axes1,'visible', 'off'); This may solve

environ 11 ans il y a | 0

Réponse apportée
text in editor
Select the text which you want to highlight > right click > Insert Text Markup

environ 11 ans il y a | 0

Réponse apportée
Do Matlab structures leak memory?
I suggest you to try: File > Preferences > General > Java Heap Memory. Then you can increase the amount of memory beyond ...

environ 11 ans il y a | 0

Réponse apportée
How to call a function of a matlab file in another matlab file ?
U can take a look at this one.Is it the same u want to know? <https://in.mathworks.com/matlabcentral/answers/222005-2-m-file-in...

environ 11 ans il y a | 1

Réponse apportée
Comparing the two structure
U can use the isequal command to compare between structs. tf = isequaln(A,B) And if the result is 1,u can remove those f...

environ 11 ans il y a | 3

Réponse apportée
Create a two variables function, including several law in MATLAB
I think this might help u. <http://in.mathworks.com/matlabcentral/answers/uploaded_files/5510/MATLAB%252520-%252520C#>

environ 11 ans il y a | 1

| A accepté

A résolu


Column Removal
Remove the nth column from input matrix A and return the resulting matrix in output B. So if A = [1 2 3; 4 5 6]; and ...

environ 11 ans il y a

A résolu


Is my wife right?
Regardless of input, output the string 'yes'.

environ 11 ans il y a

A résolu


Select every other element of a vector
Write a function which returns every other element of the vector passed in. That is, it returns the all odd-numbered elements, s...

environ 11 ans il y a

A résolu


Determine if input is odd
Given the input n, return true if n is odd or false if n is even.

environ 11 ans il y a

Charger plus