photo

Saman


university of twente

Aktiv seit 2013

Followers: 0   Following: 0

Nachricht

Statistik

All
  • Personal Best Downloads Level 1
  • 5-Star Galaxy Level 1
  • First Submission
  • First Answer

Abzeichen anzeigen

Feeds

Anzeigen nach

Gesendet


Automatic Histogram-based Fuzzy C-Means (AHFCM) clustering
Automatic Histogram-based Fuzzy C-Means (AHFCM) clustering

mehr als 7 Jahre vor | 3 Downloads |

Frage


A simple problem in creating graph
when i try to create a graph (with the code below), there is a error ('' Undefined function 'G' for input arguments of type 'cha...

mehr als 10 Jahre vor | 1 Antwort | 0

1

Antwort

Beantwortet
Remove rows or cols whose elements are all NaN
Use this : out = A(:,any(~isnan(A))); % for columns out = A(any(~isnan(A),2),:); %for rows

mehr als 10 Jahre vor | 2