photo

Vivek Selvam

Last seen: 21 Tage vor Aktiv seit 2013

Followers: 0   Following: 0

Nachricht

Statistik

All
MATLAB Answers

0 Fragen
36 Antworten

Cody

0 Probleme
32 Lösungen

RANG
958
of 300.765

REPUTATION
82

BEITRÄGE
0 Fragen
36 Antworten

ANTWORTZUSTIMMUNG
0.00%

ERHALTENE STIMMEN
11

RANG
 of 21.084

REPUTATION
N/A

DURCHSCHNITTLICHE BEWERTUNG
0.00

BEITRÄGE
0 Dateien

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANG
16.302
of 170.941

BEITRÄGE
0 Probleme
32 Lösungen

PUNKTESTAND
341

ANZAHL DER ABZEICHEN
2

BEITRÄGE
0 Beiträge

BEITRÄGE
0 Öffentlich Kanäle

DURCHSCHNITTLICHE BEWERTUNG

BEITRÄGE
0 Discussions

DURCHSCHNITTLICHE ANZAHL DER LIKES

  • Promoter
  • Knowledgeable Level 3
  • First Review
  • Revival Level 1
  • Knowledgeable Level 2
  • First Answer
  • Solver

Abzeichen anzeigen

Feeds

Anzeigen nach

Gelöst


Evaluate Deterministic Finite Automata on String
Given a Deterministic Finite Automata (DFA) and a string, determine whether or not the DFA will accept when ran on the string. A...

5 Monate vor

Beantwortet
MATLAB Coder for FSK Demodulation
Hi Mounika, Code generation is successful when using Name-Value pairs for comm.FSKDemodulator as follows: fskDemod_M = comm.FS...

mehr als 6 Jahre vor | 0

| akzeptiert

Beantwortet
SAMSUNG GALAXY S4 CANNOT run simulink model on it
This is because the <http://www.mathworks.com/help/releases/R2015a/simulink/slref/display.html Simulink Display> blocks are not ...

mehr als 10 Jahre vor | 1

Beantwortet
introducing a new variable
<http://www.mathworks.com/matlabcentral/newsreader/view_thread/315950 Hope this link helps.>

etwa 12 Jahre vor | 1

Beantwortet
Why isn't my color assignment working in this bar graph?
<http://www.mathworks.com/matlabcentral/answers/99092 This link says how to.> Hope the following illustration helps. Slope...

etwa 12 Jahre vor | 0

Beantwortet
create a new matrices by using existing matrices
Hope this helps. x = a(:,1) y = a(:,2) want = [2 3 4] choose = ismember(x,want) & ismember(y,want) ...

etwa 12 Jahre vor | 0

| akzeptiert

Beantwortet
can you help me to programming algorithm of x^n and n! ,and plotting in same figure
This may help you get started doc hold doc factorial doc power vectorization : http://www.mathworks.com/help/matla...

etwa 12 Jahre vor | 0

Beantwortet
Making a heat map from three vectors
You may find this useful. http://www.mathworks.com/matlabcentral/newsreader/view_thread/21043

etwa 12 Jahre vor | 0

| akzeptiert

Beantwortet
Z must be size 2x2 or greater. HELP
1. |T5| needs to be a matrix but is a vector. Check |size(T5)|. You would want to change the order of these lines from ...

etwa 12 Jahre vor | 1

| akzeptiert

Beantwortet
Formatting Multiple Curves in One Plot
Try plot(x,y1,x,y2,...,x,yn) instead of plot(x,[y1 y2 ... yn]).

etwa 12 Jahre vor | 0

Beantwortet
collect data from a text file without a uniform structure
Since the file is not uniform, you would need a loop to process line by line. Following is a way you can try: filename...

etwa 12 Jahre vor | 0

| akzeptiert

Beantwortet
Did not find solar cell block in 2010a, 2011a and 2013a matlab
The solar cell block is available under SimElectronics library. To check if it is installed, type |ver| in the matlab comman...

etwa 12 Jahre vor | 0

| akzeptiert

Beantwortet
index out of bounds because size(yout)=[0,0] / optimization with fmincon
In your code, you have initialized |yout| to an empty matrix ( |yout| = |[]|). Then in function |trackmmobj|, you are trying to ...

etwa 12 Jahre vor | 0

Gelöst


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

etwa 12 Jahre vor

Gelöst


Bullseye Matrix
Given n (always odd), return output a that has concentric rings of the numbers 1 through (n+1)/2 around the center point. Exampl...

etwa 12 Jahre vor

Gelöst


Nearest Numbers
Given a row vector of numbers, find the indices of the two nearest numbers. Examples: [index1 index2] = nearestNumbers([2 5 3...

etwa 12 Jahre vor

Gelöst


Return the largest number that is adjacent to a zero
This example comes from Steve Eddins' blog: <http://blogs.mathworks.com/steve/2009/05/27/learning-lessons-from-a-one-liner/ Lear...

etwa 12 Jahre vor

Gelöst


Which values occur exactly three times?
Return a list of all values (sorted smallest to largest) that appear exactly three times in the input vector x. So if x = [1 2...

etwa 12 Jahre vor

Beantwortet
How to construct this vector without loop?
vec = 3*(1:n); A = cell2mat(arrayfun(@(x) 1:x,vec,'UniformOutput',0)); or vec = 1:n; A = cell2mat(arrayfun(...

etwa 12 Jahre vor | 0

Beantwortet
Share variables among my different GUI's
This <http://www.mathworks.com/matlabcentral/answers/2002 link> may be of help.

etwa 12 Jahre vor | 0

Beantwortet
help with concatenation to open file
Try |doc function| for the new functions you find in the following code. This is one way to do what you want: a ...

etwa 12 Jahre vor | 0

| akzeptiert

Beantwortet
How can I suppress or change the error message 'Undefined function or variable'
You can try this: number = ''; % str2double returns NaN if input is not a real or complex scalar value while isnan(...

etwa 12 Jahre vor | 1

| akzeptiert

Beantwortet
convert a double array to something like logical
Hi Theodor, You can try a look-up table like this: lut = logical(diag(ones(1,7))); A = [1 5 7 4]'; S = lut(A(:...

etwa 12 Jahre vor | 0

Beantwortet
How to calculate a angle between two vectors in 3D
This code uses your angle calculation and shows for different reference points (3d). 2d is the same for your formula. % Or...

etwa 12 Jahre vor | 2

| akzeptiert

Beantwortet
How to sort data once it is read into matlab
This should solve your problem. data = textscan(fid, '%s %s %s'); instead of data = textscan(fid, '%s %f %f');

etwa 12 Jahre vor | 0

Gelöst


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

etwa 12 Jahre vor

Gelöst


Remove the vowels
Remove all the vowels in the given phrase. Example: Input s1 = 'Jack and Jill went up the hill' Output s2 is 'Jck nd Jll wn...

etwa 12 Jahre vor

Gelöst


Summing digits
Given n, find the sum of the digits that make up 2^n. Example: Input n = 7 Output b = 11 since 2^7 = 128, and 1 + ...

etwa 12 Jahre vor

Gelöst


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

etwa 12 Jahre vor

Mehr laden