Community Profile

photo

Jared


DOD

Active since 2011

Statistics

  • Thankful Level 5

View badges

Content Feed

View by

Question


Passing a string to a function
If I have a function: function zp=F(x,z) zp=zeros(2,1); zp(1)=z(2); zp(2)=a*sqrt(1+z(2)^2)+kx; And I utilize it by: ...

10 years ago | 1 answer | 0

1

answer

Question


How can variables be passed to a function
If I define a function in F.m file with the following: function zp=F(x,z) zp=zeros(2,1); zp(1)=z(2); zp(2)=a*sqrt(1+z(2)...

10 years ago | 1 answer | 0

1

answer

Question


Import additional code/functionality into running executable
If I have an executable running with some standard functionality, and I want to implement some additional functionality on a cas...

10 years ago | 1 answer | 0

1

answer

Question


Finding index and count of values in an interval
I have 2 vectors that I am comparing. I am using 1 as the "bin edges" and the other one is the data I want a count of. Histc see...

11 years ago | 1 answer | 0

1

answer

Question


Function faster than find?
I use the find command compare 2 vectors of time, one with a much higher rate than the other. Say vector1=[1 2 3 4 5], vector2 m...

11 years ago | 1 answer | 0

1

answer

Question


Compile executable with another function
I have a GUI executable that has a button which, when pressed, calls a function which uses textscan to import a data file (.csv)...

11 years ago | 1 answer | 0

1

answer

Question


Command to save figures as image
I was to add a button to my GUI that when clicked, will search for any open figures, and save them as a *.emf file. I have a lot...

11 years ago | 0 answers | 0

0

answers

Question


Increase precision of plot axes
I have some large time values, seconds to minutes of time expressed in nanoseconds-so at least 9 digits. When I plot some value ...

11 years ago | 2 answers | 0

2

answers

Question


Comparing 2 vectors: finding closest point
If I have 2 vectors, say: x=[1 2 3 4 5]; y=[0 1.1 1.5 1.6 2.4 4.1 4.7 5 5.7]; I want to find the index of the closest m...

11 years ago | 1 answer | 0

1

answer

Question


Bar graph grouped bar property
I'm trying to plot several data series in a bar graph, and group the bars. However, when I use the below code, the bars are over...

11 years ago | 0 answers | 0

0

answers

Question


sprintf text justification in uitable
I set the text in each cell of a uitable with sprintf so I can specify the number format of the data I am displaying. Is there a...

11 years ago | 1 answer | 0

1

answer

Question


Best way to find a count in a range of numbers
If I have a desired range of numbers, what is the best way to search the occurances of numbers that fall into this range? Curren...

11 years ago | 3 answers | 0

3

answers

Question


STRCMP in a loop
I have a variable number of strings stored in an array. I want to compare each of those strings with a cell, and if the cell doe...

11 years ago | 2 answers | 0

2

answers

Question


Set GUI button colors in GUIDE
How can I modify the property in the property inspector in GUIDE (so I don't have to go through all my code) to modify the toggl...

11 years ago | 2 answers | 0

2

answers

Question


Set printer properties for plot
I have a GUI that generates plot figures. Is there any way to specify the default printer properties in code? Specifically I wan...

11 years ago | 1 answer | 0

1

answer

Question


Setting plot legend properties
Is it possible to specify the size of the colored dot in the legend? I have my data points plotted as dots, and when zoomed out,...

11 years ago | 1 answer | 0

1

answer

Question


Creating a waterfall plot
I have data in a 2d plot, but I want to display it as a "waterfall" with the first value x(0),y(0) at the top, and x(i),y(i) at ...

11 years ago | 1 answer | 0

1

answer

Question


Setting histogram bar width
I use the following code to create a histogram, and set the properties, but the bar widths do not stay consistent. Any ideas why...

11 years ago | 0 answers | 0

0

answers

Question


Delta between two data cursor points in plot
Is there a way to display the x or y axis delta between 2 data cursor points in a plot?

11 years ago | 2 answers | 1

2

answers

Question


Adjusting For loop size
If I am doing something like: for i=1:length(array) if length(array(i)) < 10 array(i)=[]; i=i-1; ...

11 years ago | 1 answer | 0

1

answer

Question


"Speed up" functions in plot figure
What is the "speed" of functions in a standalone Matlab executable created plot figure dependent on (the program is NOT running ...

11 years ago | 1 answer | 0

1

answer

Question


Pick random colors from a color map
I have up to 30 variables that may be plotted in 1 figure. There are 2 sets of data, each with 15 variables. I want to have 2...

11 years ago | 1 answer | 0

1

answer

Question


Reset GUI executable to initial state
Is it possible to reset a GUI to the initial state it is in when it's first loaded without closing it and reopening? Upon hittin...

11 years ago | 4 answers | 1

4

answers

Question


Compile executable for 64-bit system
I have a GUI executable I created with GUIDE and compiled with deploytool. It was created on Windows 7 32-bit, with Matlab R2011...

11 years ago | 1 answer | 0

1

answer

Question


Closing specific figure handles
I asked a similar question before, but haven't been able to get the behavior I am looking for. Example. I can have up to 4 pl...

11 years ago | 2 answers | 0

2

answers

Question


GUI handle behavior/memory storage
I have an issue I can't track down the cause of. I have a GUI listbox, that can display 16 filenames. Directory button 1 display...

11 years ago | 0 answers | 0

0

answers

Question


Clearing part of an array
I'm having a tough time figuring out the syntax to access specific columns in an array (and maybe even using the wrong terms to ...

11 years ago | 2 answers | 0

2

answers

Question


Close command and Invalid figure handle
I have a GUI in which I have a button create a plot: p(1)=plot(...). I have a reset button that, upon being pressed, executes...

11 years ago | 4 answers | 0

4

answers

Question


Managing GUI memory usage
When using GUIDE to develop a GUI, in the simulation mode, I run through the functionality loading files, plotting, resetting (w...

11 years ago | 1 answer | 0

1

answer

Question


Pre-allocating Arrays and Optimizing memory
I am working with some large data sets. I could have up to 16 (1000000 x 8) csv files. I import with textscan, and immediatel...

11 years ago | 3 answers | 0

3

answers

Load more