photo

Narges M


Attivo dal 2013

Followers: 0   Following: 0

Messaggio

Statistica

All
MATLAB Answers

0 Domande
14 Risposte

Cody

0 Problemi
3 Soluzioni

RANK
2.065
of 299.737

REPUTAZIONE
32

CONTRIBUTI
0 Domande
14 Risposte

ACCETTAZIONE DELLE RISPOSTE
0.00%

VOTI RICEVUTI
2

RANK
 of 20.791

REPUTAZIONE
N/A

VALUTAZIONE MEDIA
0.00

CONTRIBUTI
0 File

DOWNLOAD
0

ALL TIME DOWNLOAD
0

RANK
71.486
of 165.655

CONTRIBUTI
0 Problemi
3 Soluzioni

PUNTEGGIO
40

NUMERO DI BADGE
1

CONTRIBUTI
0 Post

CONTRIBUTI
0 Pubblico Canali

VALUTAZIONE MEDIA

CONTRIBUTI
0 Punti principali

NUMERO MEDIO DI LIKE

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

Visualizza badge

Feeds

Visto da

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

circa 12 anni fa | 0

| accettato

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

circa 12 anni fa | 1

Risposto
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...

circa 12 anni fa | 0

| accettato

Risolto


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

circa 12 anni fa

Risolto


Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...

circa 12 anni fa

Risposto
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...

circa 12 anni fa | 0

| accettato

Risolto


Make a Plot with Functions
Make a plot and test

circa 12 anni fa

Risposto
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;...

circa 12 anni fa | 0

Risposto
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); ...

circa 12 anni fa | 0

| accettato

Risposto
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 ...

circa 12 anni fa | 0

| accettato

Risposto
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...

circa 12 anni fa | 0

| accettato

Risposto
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 ...

circa 12 anni fa | 0

Risposto
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...

circa 12 anni fa | 0

Risposto
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...

circa 12 anni fa | 0

Risposto
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]...

circa 12 anni fa | 0

Risposto
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...

circa 12 anni fa | 0

Risposto
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)];

circa 12 anni fa | 1

| accettato