![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/9869601_1522134525386_DEF.jpg)
SUNANNA S S
Followers: 0 Following: 0
Statistiques
15 Questions
0 Réponses
RANG
19 173
of 297 016
RÉPUTATION
2
CONTRIBUTIONS
15 Questions
0 Réponses
ACCEPTATION DE VOS RÉPONSES
33.33%
VOTES REÇUS
2
RANG
of 20 419
RÉPUTATION
N/A
CLASSEMENT MOYEN
0.00
CONTRIBUTIONS
0 Fichier
TÉLÉCHARGEMENTS
0
ALL TIME TÉLÉCHARGEMENTS
0
RANG
of 157 725
CONTRIBUTIONS
0 Problèmes
0 Solutions
SCORE
0
NOMBRE DE BADGES
0
CONTRIBUTIONS
0 Publications
CONTRIBUTIONS
0 Public Chaîne
CLASSEMENT MOYEN
CONTRIBUTIONS
0 Point fort
NOMBRE MOYEN DE LIKES
Feeds
Question
I want to diagnose disease malaria from blood sample. And I had done almost. But, there is a problem with the overlapped rbc. How to extract overlapped rbc from blood smear image?
This is my code. % Find image size [m,n,numChannels] = size(im); bw1=k_means(im*1.2); bw1=im2bw(bw1); bw2...
plus de 6 ans il y a | 1 réponse | 0
0
réponseQuestion
I want to find the k core of a network. Please help.
Anyone please help me to code a k core decomposition algorithm. The algorithm that I have is not working.
plus de 7 ans il y a | 1 réponse | 0
0
réponseQuestion
How to plot a graph in matalab2016?
When I use plot() it gives an error that the value is not integer. I want to plot the graph E=[0.0236;0.0485;0.0889;0.56...
plus de 7 ans il y a | 2 réponses | 0
2
réponsesQuestion
how can i create a string buffer with n size
for example the string is aagttctactaac i want to split into aa,ag,gt,tt,tc,ct,ta etc
presque 8 ans il y a | 1 réponse | 0
1
réponseQuestion
Could anyone please help me to code this problem.
I have a matrix M=[1 2 3 5 7 7 9 10 11 11 12 13 16 16 22 22 23 23 23 44 45 65 103 113] and anot...
presque 8 ans il y a | 4 réponses | 0
4
réponsesQuestion
I have a large dataset and I want to read it in matlab and make a sparse matrix and compute some operations, but it takes more time and some when running some functions 'Out of memory' error occurs.
Someone please help.My dataset is a 1000221 - by - 2 matrix and it is a .txt.anon file.I had attached a sample dataset and the c...
presque 8 ans il y a | 1 réponse | 0
0
réponseQuestion
How can I convert an adjacency matrix to its corresponding node list?Please help.
I have an adjacency matrix A = 0 1 1 1 1 0 1 0 1 1 1 1 1 0 0 ...
presque 8 ans il y a | 1 réponse | 0
1
réponseQuestion
How to load and read these files in matlab?
Please help me to load and read this file and convert it to corresponding adjacency matrix.
presque 8 ans il y a | 1 réponse | 0
1
réponseQuestion
How to replace the diagonal elements of a matrix with 0 fro avoiding self loops?
I have a matrix M= 1 0 0 0 1 0 0 1 0 1 0 0 0 0 1 0 1 1 1 0 0 1 0 0 1 1 1 0 0 0 0 0 0 1 0 1 I wan...
presque 8 ans il y a | 4 réponses | 2
4
réponsesQuestion
How to get the index of maximum value in each row of a matrix?
For eg, Matrix A=[1 2 3;2 0 0; 3 8 5 ]; The result I want to get is: [p q]=1 3 2 1 3 2 I tried this ...
presque 8 ans il y a | 3 réponses | 0
3
réponsesQuestion
I want to divide each row of a matrix with corresponding element in another matrix .Please help.
For eg: I have a matrix A=[9 6 3; 4 2 8; 1 0 0;] divide |A| by |B=[3 2 1]| to get the result C...
presque 8 ans il y a | 3 réponses | 0
3
réponsesQuestion
There is a problem in loop. Could anyone please correct my code.
I want to find the 1's in first column and compare it with all other columns and if there is a matching column then count 1 and ...
presque 8 ans il y a | 2 réponses | 0
2
réponsesQuestion
I'm trying to implement an algorithm for prediction of missing nodes using Matlab. But, there are some errors in my coding , Could anyone please correct my code?
clc; edges = dlmread('twitnet.csv'); edges(all(edges == 0, 2), :) = []; [uedges, ~, erow] = unique(edges.', 'stable...
presque 8 ans il y a | 2 réponses | 0
2
réponsesQuestion
I am a beginner in matlab. So, Could anyone please help me to create an adjacency matrix based on this attached dataset? This set consists of nodes and edges, so I want adjacency matrix where 1 represents connected nodes otherwise 0.
Thanks
presque 8 ans il y a | 1 réponse | 0
1
réponseQuestion
I want to access an excel file with 500 by 2 matrix and check the connected nodes(bidirectional) in that matrix and the output will be a matrix with 1 represent connection otherwise 0.When I run this code,the error is"Maximum variable size exceeded"
clc; A = csvread('twitnet'); numnode = max(A(:)); adj = zeros(numnode,numnode); fromlist = A(:,1); tolist = A(...
presque 8 ans il y a | 1 réponse | 0