photo

Narges M


自 2013 起处于活动状态

Followers: 0   Following: 0

消息

统计学

All
MATLAB Answers

0 个提问
14 个回答

Cody

0 个问题
3 个答案

排名
2,036
of 297,503

声誉
32

贡献数
0 个提问
14 个回答

回答接受率
0.00%

收到投票数
2

排名
 of 20,449

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名
69,843
of 159,017

贡献数
0 个问题
3 个答案

评分
40

徽章数量
1

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • First Review
  • Knowledgeable Level 2
  • First Answer
  • Solver

查看徽章

Feeds

排序方式:

已回答
How do I convert an excel file to a cell array ?
<http://www.mathworks.nl/help/matlab/ref/xlsread.html#bthf_dr>

11 years 前 | 0

| 已接受

已回答
Correlation coefficent for vectors (of unequal lengths).
use isnan() function to skip those rows

11 years 前 | 1

已回答
Reading data from a text file
use this example: cfg = fopen('myfile.txt'); line = fgetl(cfg); %this line reads the first line, you can discard it rig...

11 years 前 | 0

| 已接受

已回答
exporting from matlab to excel
use this example: A = {1;2;3;4}; B = [9;8;7;6]; C = {5;6;7;8}; D = [5;4;3;2]; for i='A':'D' eval(s...

11 years 前 | 0

| 已接受

已回答
help with analysis of equations
Try this: if true fplot('x^2-5*x*sin(3*x)+3',[0,10]); disp('positive roots of the equation are') hold on;...

11 years 前 | 0

已回答
Use the same color multiple times in a plotting loop
You could use a colormap such as HSV to generate a set of colors. For example: folder=dir('*.csv'); N = length(folder); ...

11 years 前 | 0

| 已接受

已回答
please help with this function
your function is this: function [th rad]=cartopolar25(x,y) th = atan(y/x); rad = sqrt(x^2+y^2); if x<0 ...

11 years 前 | 0

| 已接受

已回答
fprintf function for writing data into microsoft office word.
you could try this: <http://www.mathworks.com/matlabcentral/newsreader/view_thread/293381> or you could write your data in Mi...

11 years 前 | 0

| 已接受

已回答
plotting as it is x- axis for first column and y axis for two part one y for second column and above that third column y value? (mean one y and then above that other value for clear visualization in plot)
you cannot have two y axis in a single figure. you could have subplots, each with one x axis and one y axis. in each subplot ...

11 years 前 | 0

已回答
plotting as it is x- axis for first column and y axis for two part one y for second column and above that third column y value? (mean one y and then above that other value for clear visualization in plot)
do you mean this? your question is not very clear. figure; hold on; a = subplot(2,1,1); plot(y1,x); b = subplot(2,1,2...

11 years 前 | 0

已回答
a problem with a function
Yes, your function is designed to work with one value, and see if that's less than zero or not. So if you want to use it for a...

11 years 前 | 0

已回答
how to convert the format of images from '.jpg' to '.tif' format. Images are stored in a folder
filenames = ls([path '*.jpg']); for i=1:size(filenames ,1) this = strtrim(filenames (i,:)); temp = imread([path this]...

11 years 前 | 0

已回答
Betweenness Centrality for a vertices in an adjacency matrix
varargin: <http://www.mathworks.nl/help/matlab/ref/varargin.html> BGL: <http://www.mathworks.com/matlabcentral/fileexchange/1...

11 years 前 | 0

已回答
i have array like this a = 50 60 70 80 and want to make each entity comma seperated i.e 50,70,80,90 how i can do this?
A= [20,30,40,50]'; comma = ones(size(A))* ','; B = [num2str(A) char(comma)];

11 years 前 | 1

| 已接受