photo

Niti K


Last seen: 5 years 前 自 2019 起处于活动状态

Followers: 0   Following: 0

统计学

MATLAB Answers

0 个提问
6 个回答

排名
4,376
of 300,217

声誉
12

贡献数
0 个提问
6 个回答

回答接受率
0.00%

收到投票数
0

排名
 of 20,892

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名

of 167,741

贡献数
0 个问题
0 个答案

评分
0

徽章数量
0

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • Knowledgeable Level 2
  • First Answer

查看徽章

Feeds

排序方式:

已回答
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...

6 years 前 | 0

已回答
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...

6 years 前 | 0

已回答
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...

6 years 前 | 0

已回答
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...

6 years 前 | 0

| 已接受

已回答
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....

6 years 前 | 0

| 已接受

已回答
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...

6 years 前 | 0

| 已接受