Community Profile

photo

Riley


Last seen: 2 years ago Active since 2021

Followers: 0   Following: 0

code and code

Statistics

All
  • MATLAB Central Treasure Hunt Finisher
  • Solver
  • Knowledgeable Level 1
  • Thankful Level 1
  • First Answer

View badges

Feeds

View by

Answered
Inverse Cumulative distribution function
You can use function ksdensity.

3 years ago | 0

Answered
matlab 2021b installed but not working
Uninstall MATLAB and delete the installation file thoroughtly. Then install it again.

3 years ago | 0

Answered
How can I plot the discrete points of two arrays?
Read about function plot.

3 years ago | 1

| accepted

Answered
Mathlab loops questıons about new starters
clear clc str = input('Enter name:','s') ; N = input('Enter N:') ; for i=1:N disp(str); end Try this. But as a starte...

3 years ago | 1

| accepted

Answered
Help me find the index value for first minimum value in a matrix.
A=[ 34 67 78 88 4 15 23 67 78 56 3 2 24 67]; flag=0; for i=1:length(A)-1 if flag==0&&A(i+1)<A(i) flag=1; ...

3 years ago | 0

Question


How do I find cluster center of each cluster gained from Spectral Clustering?
Hi, I am using Spectral Clustering for data analysis recently and I found that Spectral Clustering function built in MATLAB only...

3 years ago | 1 answer | 0

1

answer