photo

Niti K


Last seen: etwa 5 Jahre vor Aktiv seit 2019

Followers: 0   Following: 0

Statistik

MATLAB Answers

0 Fragen
6 Antworten

RANG
4.224
of 300.338

REPUTATION
12

BEITRÄGE
0 Fragen
6 Antworten

ANTWORTZUSTIMMUNG
0.00%

ERHALTENE STIMMEN
0

RANG
 of 20.922

REPUTATION
N/A

DURCHSCHNITTLICHE BEWERTUNG
0.00

BEITRÄGE
0 Dateien

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANG

of 168.149

BEITRÄGE
0 Probleme
0 Lösungen

PUNKTESTAND
0

ANZAHL DER ABZEICHEN
0

BEITRÄGE
0 Beiträge

BEITRÄGE
0 Öffentlich Kanäle

DURCHSCHNITTLICHE BEWERTUNG

BEITRÄGE
0 Highlights

DURCHSCHNITTLICHE ANZAHL DER LIKES

  • Knowledgeable Level 2
  • First Answer

Abzeichen anzeigen

Feeds

Anzeigen nach

Beantwortet
How to skip first three lines in Matlab and read the next line until fixed character appears?
you can use the function fgetl. you can open the file in read mode using fopen and set up a while loop with the file id. sort o...

mehr als 6 Jahre vor | 0

Beantwortet
WEIRD ERROR (INDEX EXCEEDS MATRIX DIMENSIONS)
Try checking the limits on variable k in the second set of for loops. k is defined from 1:run_hours-1 so deriv will have third...

mehr als 6 Jahre vor | 0

Beantwortet
How can i run a matlab code on other PC ? The installed Matlab Runtime is not compatible with the application
Try typing deploytool in your command window. This will open an application package utility. you can create an exe and package...

mehr als 6 Jahre vor | 0

Beantwortet
How to get the histogram features of an RGB image? and can use it as color extraction? i want to find the mean, variance ,skewness, energy ,kurtosis, and entropy .. please help
you can either convert rgb image to grayscale using rgb2gray or plot histograms for individual channel using indexing. for exa...

mehr als 6 Jahre vor | 0

| akzeptiert

Beantwortet
CSV not opening fully
Try xlsread if you have Excel installed. It might be better at loading csv files. However xlsread will only read numeric values....

mehr als 6 Jahre vor | 0

| akzeptiert

Beantwortet
How to alter an image so noise is reduced by using a threshold within a loop
One way would be to define a windowsize (2 in your case) and have your for loops go from 1:size-Windows. you can add an if cond...

mehr als 6 Jahre vor | 0

| akzeptiert