photo

dm


Attivo dal 2011

Followers: 0   Following: 0

Messaggio

Statistica

All
MATLAB Answers

10 Domande
7 Risposte

Cody

0 Problemi
39 Soluzioni

RANK
3.698
of 300.369

REPUTAZIONE
14

CONTRIBUTI
10 Domande
7 Risposte

ACCETTAZIONE DELLE RISPOSTE
90.0%

VOTI RICEVUTI
6

RANK
 of 20.936

REPUTAZIONE
N/A

VALUTAZIONE MEDIA
0.00

CONTRIBUTI
0 File

DOWNLOAD
0

ALL TIME DOWNLOAD
0

RANK
14.429
of 168.436

CONTRIBUTI
0 Problemi
39 Soluzioni

PUNTEGGIO
380

NUMERO DI BADGE
1

CONTRIBUTI
0 Post

CONTRIBUTI
0 Pubblico Canali

VALUTAZIONE MEDIA

CONTRIBUTI
0 Punti principali

NUMERO MEDIO DI LIKE

  • First Review
  • Thankful Level 3
  • Knowledgeable Level 1
  • First Answer
  • Solver

Visualizza badge

Feeds

Visto da

Domanda


How to access colormap-data of different axes in the same figure without using colormap()?
In 14b it was introduced the possiblity to add different colormaps for different axes ( <http://mathworks.com/help/matlab/ref/co...

quasi 11 anni fa | 0 risposte | 0

0

risposte

Domanda


Solve symbolic system of equations when specifying solutions
Probably not the best question title, but didn't come to think of a better description. Is it possible to let Matlab solve a...

oltre 11 anni fa | 1 risposta | 0

1

risposta

Risposto
Check for existence of mat-file in search path
Always too fast to ask. Seems like just adding the extension works fine, e.g. exist('mandrill.mat') returns 2. See comment fi...

oltre 13 anni fa | 2

| accettato

Domanda


Check for existence of mat-file in search path
Just came over an "interesting" problem. If I run |exist('mandrill','file')|, I get false back, which I normally would interpret...

oltre 13 anni fa | 1 risposta | 1

1

risposta

Domanda


Possible to "expand" function handle?
I've written a function that returns a function handle to a Lagrange polynomial L(x): function L = lagrange(xv,yv) % m...

oltre 13 anni fa | 1 risposta | 0

1

risposta

Risposto
Using IVI-COM IviRfSigGen to generate an ARB signal
Which VSG from Agilent do you use? If you have the instrument control toolbox in Matlab, controlling the instrument thru a GPIB ...

circa 14 anni fa | 0

Risposto
Sort cell array with numeric data by values of first index in matrix
Managed to figure it out: firstIdx = cellfun(@(x)x(1,1),Cn); [dummy,order] = sort(firstIdx); Cns = Cn(order);

circa 14 anni fa | 1

| accettato

Domanda


Sort cell array with numeric data by values of first index in matrix
Hello, I got a set of contour data obtained by [C h] = contour(X,Y,Z) which I want to split into a cell array and sort with r...

circa 14 anni fa | 1 risposta | 0

1

risposta

Domanda


Contour plot in Smith chart - how to do it?
I got a set of measured load-pull (LP) data from an amplifier, which I'd like to plot as contours in the Smith chart (an example...

circa 14 anni fa | 1 risposta | 0

1

risposta

Domanda


Read string and data (double matrix) of uknown size from file "efficiently"
I'm working with converting a piece of Scilab code to MATLAB, where I want to process data in some text files that I got. The co...

oltre 14 anni fa | 1 risposta | 1

1

risposta

Domanda


How to decide if a plot is surf or mesh based on graphics handle data?
Lets say I have a 3D plot which I want to export to another format, can I in any way tell if the plot is a surface, or a mesh by...

oltre 14 anni fa | 1 risposta | 0

1

risposta

Domanda


Get current colormap used on i.e. surfaceplot as string
Is there any way that I can get the current colormap of i.e. a surface plot returned as a string? If I have a plot, e.g. x...

oltre 14 anni fa | 1 risposta | 0

1

risposta

Risposto
Writing MEX code for LMS filter: some difficulties with my implementation
I found the error; wi[m] = wi[m]+2*mu*(er[n]*xti[n]-ei[n]*xtr[m]); /* should be wi[m] = wi[m]+2*mu*(er[n]*xti[m]-ei...

oltre 14 anni fa | 0

| accettato

Domanda


Writing MEX code for LMS filter: some difficulties with my implementation
I'm trying to implement a MEX function for a LMS filter (which I've already implemented in MATLAB (*.m)) in order to improve my ...

oltre 14 anni fa | 1 risposta | 0

1

risposta

Risposto
Evolution of coefficients of adaptive LMS filter
Quickly written based on LMS algorithm at Wikipedia (which I think originate from Haykin's "Adaptive Filter Theory 4th Ed.") ...

oltre 14 anni fa | 1

Risposto
Save a file with own extension in menu GUI
Something like this? [filename pathname] = uiputfile('*.sin','Save file as'); save(fullfile(pathname,filename),'varname','-...

oltre 14 anni fa | 0

| accettato

Risposto
export figure with textures and colors ...
Not sure if this will solve it, but have you tried changing the rendering? http://www.mathworks.com/help/techdoc/creating_plo...

oltre 14 anni fa | 0