photo

Justin


Controls and Data Services Inc

Actif depuis 2014

Followers: 0   Following: 0

Message

Statistiques

All
MATLAB Answers

0 Questions
17 Réponses

Cody

0 Problèmes
36 Solutions

RANG
1 278
of 300 392

RÉPUTATION
58

CONTRIBUTIONS
0 Questions
17 Réponses

ACCEPTATION DE VOS RÉPONSES
0.00%

VOTES REÇUS
19

RANG
 of 20 934

RÉPUTATION
N/A

CLASSEMENT MOYEN
0.00

CONTRIBUTIONS
0 Fichier

TÉLÉCHARGEMENTS
0

ALL TIME TÉLÉCHARGEMENTS
0

RANG
14 760
of 168 373

CONTRIBUTIONS
0 Problèmes
36 Solutions

SCORE
370

NOMBRE DE BADGES
2

CONTRIBUTIONS
0 Publications

CONTRIBUTIONS
0 Public Chaîne

CLASSEMENT MOYEN

CONTRIBUTIONS
0 Point fort

NOMBRE MOYEN DE LIKES

  • Revival Level 1
  • Knowledgeable Level 2
  • First Answer
  • Commenter
  • Solver

Afficher les badges

Feeds

Afficher par

Réponse apportée
2014b Subplot legend zoom error
Hi Lena. I got a response from mathworks that states the following: Hello Justin, I am writing in reference to your ...

presque 11 ans il y a | 1

| A accepté

Réponse apportée
Solve equation with 2 variables being vectors
Edited for clarification: This may do the trick. It has a loop but only one for implementing the function. After it is run ...

plus de 11 ans il y a | 0

Réponse apportée
Slider Event Listener Creates a new figure instead of updating Existing figure.
Hello :) I don't have the image processing toolbox but I believe imshow will work similar to some other functions. You shoul...

plus de 11 ans il y a | 1

| A accepté

Réponse apportée
Plotting multiple figures from a for loop on the same graph
I'm not sure I understand exactly what you are trying to get but I will try to help. Matlab nomenclature usually refers to th...

plus de 11 ans il y a | 4

Réponse apportée
How can I eliminate the following error?
The problem comes in when you are defining your M as an array of doubles before the loop. I would make sure there exists no M i...

plus de 11 ans il y a | 4

| A accepté

Réponse apportée
How do I disable the new pop-up command history window?
One way is to press the up arrow in the command window so the history shows up. Then you can right click the bar on the top of ...

plus de 11 ans il y a | 6

| A accepté

Réponse apportée
Converting Cell to Double
There may be a better way to import the text file so the data is automatically read in as numeric values. Try using the Import ...

plus de 11 ans il y a | 0

| A accepté

Réponse apportée
How to create a matrix of four dimensions in which the fourth dimension is not fixed?jkjsdfhlksdjhf
If you don't need to compile your code Matlab is very flexible with array sizes. For example if you have A = zeros([2 2]); you ...

plus de 11 ans il y a | 0

Réponse apportée
How to track numbers in the MATLAB excel sheet?
I believe the correct name for what you are referring to as the Matlab excel sheet is called the Variable Editor. A simple an...

plus de 11 ans il y a | 0

Réponse apportée
How to speed up the following code. I need to optimize it for fastest performance in Matlab 7.0 version
What is lat_BOX and lon_BOX and where are m and n defined? Also, what is the concept of what the conditional statements are app...

plus de 11 ans il y a | 0

Réponse apportée
Finding x-values from found y-values
If I understand the question correctly you want may just be able to use <http://www.mathworks.com/help/matlab/ref/ginput.html gi...

plus de 11 ans il y a | 0

Réponse apportée
How to pick the j-th percentile of a vector?
Is the function <http://www.mathworks.com/help/stats/prctile.html prctile> what you are looking for? It is in the statistics ...

plus de 11 ans il y a | 0

Réponse apportée
Interpreting varargin name-value pairs.
I'm always a fan of cellfun. inputExist = find(cellfun(@(x) strcmpi(x, 'fontname') , varargin)); if inputExist font...

plus de 11 ans il y a | 0

Réponse apportée
problem for creating vector with for loop
This is not a difficult task to do but does take a little extra planning in how to index the first array. I'll give you an ex...

plus de 11 ans il y a | 0

Réponse apportée
Textscan with very large .dat files, Matlab keeps crashing
One thing that might help is increasing the Java Heap Memory. Go into the Home tab > Preferences > General > Java Heap Memory ...

plus de 11 ans il y a | 0

Réponse apportée
nan values from matlab to excel
To expand on dpb's comment there are a few possible options and it depends on what you want to do and if you want to be able to ...

plus de 11 ans il y a | 0

Réponse apportée
How can I eliminate unwanted zeros from a matrix?
It depends on what you are trying to end up with exactly but a good approach would be to set all zero values to NaN. NaNs wont ...

plus de 11 ans il y a | 3