photo

Anish

MathWorks

Attivo dal 2011

Followers: 0   Following: 0

Messaggio

Statistica

All
MATLAB Answers

2 Domande
8 Risposte

Cody

0 Problemi
18 Soluzioni

RANK
1.501
of 300.780

REPUTAZIONE
48

CONTRIBUTI
2 Domande
8 Risposte

ACCETTAZIONE DELLE RISPOSTE
100.0%

VOTI RICEVUTI
18

RANK
 of 21.086

REPUTAZIONE
N/A

VALUTAZIONE MEDIA
0.00

CONTRIBUTI
0 File

DOWNLOAD
0

ALL TIME DOWNLOAD
0

RANK
28.250
of 171.018

CONTRIBUTI
0 Problemi
18 Soluzioni

PUNTEGGIO
180

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 1
  • First Answer
  • Solver

Visualizza badge

Feeds

Visto da

Risolto


Column Removal
Remove the nth column from input matrix A and return the resulting matrix in output B. So if A = [1 2 3; 4 5 6]; and ...

quasi 12 anni fa

Risolto


Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...

quasi 12 anni fa

Risolto


radius of a spherical planet
you just measured its surface area, that is the input.

quasi 14 anni fa

Risolto


Remove all the consonants
Remove all the consonants in the given phrase. Example: Input s1 = 'Jack and Jill went up the hill'; Output s2 is 'a ...

quasi 14 anni fa

Risolto


Find the alphabetic word product
If the input string s is a word like 'hello', then the output word product p is a number based on the correspondence a=1, b=2, ....

quasi 14 anni fa

Risolto


Quote Doubler
Given a string s1, find all occurrences of the single quote character and replace them with two occurrences of the single quote ...

quasi 14 anni fa

Risolto


Target sorting
Sort the given list of numbers |a| according to how far away each element is from the target value |t|. The result should return...

quasi 14 anni fa

Risolto


Cell joiner
You are given a cell array of strings and a string delimiter. You need to produce one string which is composed of each string fr...

quasi 14 anni fa

Risolto


The Goldbach Conjecture
The <http://en.wikipedia.org/wiki/Goldbach's_conjecture Goldbach conjecture> asserts that every even integer greater than 2 can ...

quasi 14 anni fa

Risolto


Is my wife right?
Regardless of input, output the string 'yes'.

quasi 14 anni fa

Risolto


Create a cell array out of a struct
Create a cell array out of a (single) struct with the fieldname in the first column and the value in the second column: in: ...

quasi 14 anni fa

Risolto


Sort a list of complex numbers based on far they are from the origin.
Given a list of complex numbers z, return a list zSorted such that the numbers that are farthest from the origin (0+0i) appear f...

quasi 14 anni fa

Risolto


Find the numeric mean of the prime numbers in a matrix.
There will always be at least one prime in the matrix. Example: Input in = [ 8 3 5 9 ] Output out is 4...

quasi 14 anni fa

Risolto


Remove any row in which a NaN appears
Given the matrix A, return B in which all the rows that have one or more <http://www.mathworks.com/help/techdoc/ref/nan.html NaN...

quasi 14 anni fa

Risolto


Determine whether a vector is monotonically increasing
Return true if the elements of the input vector increase monotonically (i.e. each element is larger than the previous). Return f...

quasi 14 anni fa

Risolto


Find all elements less than 0 or greater than 10 and replace them with NaN
Given an input vector x, find all elements of x less than 0 or greater than 10 and replace them with NaN. Example: Input ...

quasi 14 anni fa

Risolto


Determine if input is odd
Given the input n, return true if n is odd or false if n is even.

quasi 14 anni fa

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

quasi 14 anni fa

Risposto
How can I remove all the paths for Toolboxes in MATLAB?
There is no supported way of undoing the path setting in MATLAB. The safest way to avoid name collisions is to rename all user f...

quasi 15 anni fa | 2

| accettato

Risposto
Second order homogeneous differential equation
You can use the DSOLVE command in the Symbolic Math Toolbox: >> dsolve('D2y - Dy - 6*y = 0') ans = C4*exp(3*t) +...

quasi 15 anni fa | 1

Risposto
How do I dynamically generate a file name for save in MATLAB
You can use the function form of the SAVE command: i = 10; fname = sprintf('myfile%d.mat', i); save(fname) For m...

quasi 15 anni fa | 12

Risposto
Why do I get false results when using equal relational operation for the logical operation?
If you look carefully at the definition of fundamental arithmetic operations like addition and multiplication, you soon encounte...

quasi 15 anni fa | 0

Risposto
How does logical indexing work?
Assume A is a MxN matrix. Let "tf" be a MxN logical matrix. Then A(tf) extracts all elements of A corresponding to all tru...

quasi 15 anni fa | 1

Risposto
Why is 6*i not a complex number in my program?
Looks like you might have a variable defined named "i" which is a real. If this is the case, then the "definition" of "i" as ima...

quasi 15 anni fa | 0

Risposto
Does absolute intensity in an image matter when computing the normalized cross correlation with NORMXCORR2?
The normalized cross correlation computed in normxcorr2 is robust to differences in illumination between the template and input ...

quasi 15 anni fa | 1

| accettato

Risposto
How is the winning neuron selected by the NEWSOM function within Neural Network Toolbox?
The NEWSOM function is used to obtain a self-organizing network. The syntax for this function is as follows: net = newsom(P...

quasi 15 anni fa | 1

| accettato

Domanda


Is there a function which calculates a POLYFIT and MEAN of vectors in MATLAB 7.11 (R2010b)?
I am working with MATLAB 7.11 (R2010b). In my project I need to linear fit multiple vectors and calculate the mean of them. I wo...

quasi 15 anni fa | 1 risposta | 0

1

risposta

Domanda


How is the winning neuron selected by the NEWSOM function within Neural Network Toolbox?
I would like to know how the winning neuron is selected by the NEWSOM function within Neural Network Toolbox.

quasi 15 anni fa | 1 risposta | 0

1

risposta