Community Profile

photo

Ibro Tutic


Last seen: oltre 3 anni fa Attivo dal 2015

Statistiche

  • Thankful Level 4

Visualizza badge

Content Feed

Visto da

Domanda


Value on top of grouped bar graph?
Assume we had y=[2 3 4; 1 5 2; 6 2 5] bar(y) Would there be anyway to get the value of the bar graphs on top of the...

oltre 6 anni fa | 1 risposta | 0

1

risposta

Domanda


How to Plot Numbers on top of Bar graphs?
Assume we have this as data Y=[198 138 172 188 190 192]; bar(Y); How would I go about plotting the Y-values of each ...

oltre 6 anni fa | 5 risposte | 4

5

risposte

Domanda


How to Save And Close Excel File using actxserver?
I am writing some lines of data to an Excel file and I can't seem to find a way to save and close the file, the rest of the code...

oltre 6 anni fa | 2 risposte | 0

2

risposte

Domanda


How to Add Values from One Matrix in between the values of another?
Let's say you have a matrix a=[ 1 3 5 7 9 11] and b = [ 2 4 6 8 10]. How would you go about merging the two matricies so that ev...

oltre 6 anni fa | 1 risposta | 0

1

risposta

Domanda


Deleting a Cell and shifting cells left
I need to remove the n-th data (in a 1xn vector) and shift over the rest of the contents to the left by one. How would I do this...

oltre 6 anni fa | 1 risposta | 0

1

risposta

Domanda


Compare the rows of two cell arrays?
Let's say we have two cell arrays, a and b. a={1, 2; 3, 4; 5, 6; 7, 8} and b={1, 2; 3, 4; 5, 6; 7, 8}. How would I go about comp...

oltre 6 anni fa | 1 risposta | 0

1

risposta

Domanda


How to verify input only contains certain numbers?
Lets say that users are required to enter the numbers: 35, 36, 37 in some order (b={'35', '36', '37'}). How would I go about ver...

oltre 6 anni fa | 1 risposta | 0

1

risposta

Domanda


How to replace portion of data set with another?
Assume you have two 20x20 data sets (just an example). The first column of data contains the time the data was recorded (1,2,3,4...

oltre 6 anni fa | 2 risposte | 0

2

risposte

Domanda


How to plot 17 subplots?
I am trying to plot a large number of subplots, but want to make sure formartting is such that it takes the most compact form (i...

oltre 6 anni fa | 2 risposte | 0

2

risposte

Domanda


How to distinguish two similar but different strings?
I have a function that sorts files based on file name. Two of the categories are 'Z7PR' and 'Z7PR1', which are two different tes...

oltre 6 anni fa | 1 risposta | 0

1

risposta

Domanda


Populate listbox with only directories?
I am trying to populate a listbox with only the folder names (directories) in a folder. The code below does that, but there are ...

quasi 7 anni fa | 1 risposta | 0

1

risposta

Domanda


How to clear variable from GUI?
I am plotting from a structure called handles.data. I have a push button to clear all graphs and this structure to plot other th...

quasi 7 anni fa | 1 risposta | 0

1

risposta

Domanda


How to save data in a GUI button callback?
I have a function that I run for plotting certain data called englishplot whose output is a structure containing relevant data. ...

quasi 7 anni fa | 1 risposta | 0

1

risposta

Domanda


How to plot N subplots?
I have a GUI where a user can select what plots they want from multiple possibilities. I am trying to find a way to robustly plo...

quasi 7 anni fa | 2 risposte | 0

2

risposte

Domanda


How to load a structure as a handle?
I am trying to load a structure to a handle that I can use in a GUI. When I load the structure, I use handles.data=load('s...

quasi 7 anni fa | 2 risposte | 0

2

risposte

Domanda


How to set different y limits for multiple subplots?
I have 12 subplots that I am trying to plot, but when I plot them the axes are all messed up. I would like to set the y-axis bas...

quasi 7 anni fa | 2 risposte | 0

2

risposte

Domanda


How to replace commas with periods in data?
I am importing some data that originated in Germany, and they used commas instead of periods to indicate decimals. Now my issue ...

quasi 7 anni fa | 1 risposta | 0

1

risposta

Domanda


How to replace a column with an incremented vector starting at -10?
I have some time data and I am trying to replace an invalid column with data starting at -10 and increases in increments of .1 u...

quasi 7 anni fa | 1 risposta | 0

1

risposta

Domanda


How to Text Scan and remove columns full of zeros?
I am scanning in large data sets and many of them have multiple fields that don't have data (recorded as 0). How would I use tex...

quasi 7 anni fa | 2 risposte | 0

2

risposte

Domanda


What's the upper limit for how much data can be stored in a structure?
I am working with about 20 datasets, each with a size of about 2500x300. Is it possible to open these datasets, store them, and ...

quasi 7 anni fa | 2 risposte | 0

2

risposte

Domanda


How to Set Value of a Structure as Cell Array?
I have a structure, DLG.standard.Z1P and I have a cell array of data, C (2740x360). I would like to put this cell array within t...

quasi 7 anni fa | 1 risposta | 0

1

risposta

Domanda


How to Get a Structure as an Output from a Function?
I have this function made to sort data into a structure. However, when I call a directory as the input, I can't seem to get an o...

quasi 7 anni fa | 1 risposta | 0

1

risposta

Domanda


How to search and sort strings from a structure efficently?
Lets say I have one structure with file names as character arrays (strings). Some file names have Z1P in them, Z1G, or Z1K. Othe...

quasi 7 anni fa | 1 risposta | 0

1

risposta

Domanda


How to Remove files that don't match string?
I have a list of filenames, and I am trying to remove any files that don't have the string 'Z1P', 'Z2P', or 'Z1G' in them. T...

quasi 7 anni fa | 2 risposte | 0

2

risposte

Domanda


Allow user to name structure?
I realize variables should not be named dynamically, but I would like to name structures dynamically. We have large data sets fo...

quasi 7 anni fa | 1 risposta | 0

1

risposta

Domanda


How to create a weighted average for the following data?
I am trying to create an average of the 'average' column below located in my Avg structure (Avg.average, Avg.population, etc). H...

quasi 7 anni fa | 1 risposta | 0

1

risposta

Domanda


How to build a growing square matrix with the following values?
I am working on some code to find the condition of a spring matrix. I know the matrix in question, but I am not sure how to crea...

circa 7 anni fa | 1 risposta | 0

1

risposta

Domanda


Is it possible to run Excel calculations in Matlab?
Basically I have an extremely involved Excel spreadsheet that calculates stress/strain on different materials. There are various...

oltre 7 anni fa | 0 risposte | 0

0

risposte

Domanda


Sub-scripted Dimension Mismatch Error
I am trying to create a table, with range breakpoints along the left hand vertical axis (starting at the 2nd row of the matrix a...

quasi 8 anni fa | 2 risposte | 0

2

risposte

Domanda


Fastest Way of Opening and Reading .csv Files (Currently using xlsread)
I am currently trying to convert 100,000+ csv files (all the same size, with the same data structuring on the inside) to mat fil...

quasi 8 anni fa | 4 risposte | 0

4

risposte

Carica altro