Community Profile

photo

CAM


Last seen: Today Aktiv seit 2012

Statistiken

All
  • Thankful Level 3
  • 3 Month Streak
  • Cody Challenge Master
  • Indexing I Master
  • Project Euler I
  • Knowledgeable Level 2
  • Revival Level 1
  • Introduction to MATLAB Master
  • Community Group Solver
  • First Answer
  • Tiles Challenge Master
  • CUP Challenge Master

Abzeichen anzeigen

Content Feed

Anzeigen nach

Frage


Running compiled AppDesigner app. Error finding getRunningApp
I am running a compiled GUIDE program. (This is a very large, complex legacy program). We wanted to add a custom pop-up window...

etwa ein Monat vor | 1 Antwort | 0

1

Antwort

Beantwortet
I am having empty cells while saving the extracted features inside loops
You never tell Matlab to put the next value of Extracted into a new cell. I.e., you have not increased the cell array index wit...

11 Monate vor | 0

Beantwortet
Finding minimum within a set of rows below a certain point?
I suggest using the find command (with Z>=2) with row & column as outputs. Find the min and max column values and their associa...

12 Monate vor | 0

Beantwortet
calculate the maximum of every 24 data in matrices
Have you considered reshaping the 2D matrix into a 3D matrix -- (number of sensors) x 24 x days? Then you could use max for eac...

etwa ein Jahr vor | 1

Beantwortet
Show only amount of n values on a continuous plot
I presume that you are reading the serial data into a timetable or set of vectors (Time, Data, ...). Instead of plotting the wh...

etwa ein Jahr vor | 0

Beantwortet
Overlay a scatterplot of continuous data with boxplots summarizing groupings of the same data
Have you tried plotting the boxplot on the secondary y-axis and hide its x-labels?

etwa ein Jahr vor | 0

Beantwortet
Importing .mat files in a loop
for z=1:20 filename = ['data_', num2str(z)]; s(z) = load(filename); % Load variables into a structure end

etwa ein Jahr vor | 1

| akzeptiert

Beantwortet
How to stop a for loop by press a button APP designer ?
Make the Stop button a toggle button. Within the FOR loop, check the status of the Stop button. If it is toggled-on, then brea...

mehr als ein Jahr vor | 0

| akzeptiert

Frage


stack command errors with multiple column variables of different data types
I have a table (imported from a poorly-designed spreadsheet) with repeated column variables I would like to stack. The fields a...

mehr als ein Jahr vor | 1 Antwort | 0

1

Antwort

Frage


Appdesigner uitable and uistyle
I created a uitable in appdesigner and populated it with data. I want to make the font in the 4th column blue and bold. I used...

etwa 3 Jahre vor | 1 Antwort | 1

1

Antwort

Beantwortet
I want to merge more xlsx files in one xlsx file.
First thing: I personally would avoid using "i" as a counter, since it could also signify the imaginary number. Use "ii" instea...

etwa 4 Jahre vor | 0

Beantwortet
How can I convert a vector in format cell to double?
cell2mat

etwa 4 Jahre vor | 0

Beantwortet
Find max value with multiple conditions
Use logic statements for each criterion. Use logical "AND" (&) to see which elements meet all criteria. Find the max of thos...

etwa 4 Jahre vor | 0

Beantwortet
Could someone tell me an easy way to plot graph when kk varies from 1 to 100?
Have you considered putting all emg data columns in a cell array, with the first cell containing the x-values? That way you onl...

etwa 4 Jahre vor | 1

Frage


Simultaneous reading of mat file allowed?
I know it is bad to allow multiple users to write to a mat-file simultaneously (or one read while another is writing). But can ...

mehr als 4 Jahre vor | 1 Antwort | 0

1

Antwort

Beantwortet
Cell array data to double conversion
Assuming each cell has only one entry, try using cellfun with str2double to convert the cell array of strings to a cell array of...

mehr als 4 Jahre vor | 0

| akzeptiert

Beantwortet
i keep getting an error in my code about my array. pls help . code and error below thank you
When you are concatenating horizontally, the number of rows must be consistent. According to your comment, all variables are 1x...

mehr als 4 Jahre vor | 0

Beantwortet
Need for explication of this code
"i" starts with 1. M becomes [V(1:(1+3))] = [1:4] = [1 2 3 4]. "i" becomes 5 = (1+J) = (1+4). M adds a row with [5 6 7 8]. Et...

mehr als 4 Jahre vor | 1

| akzeptiert

Beantwortet
How to create a GUI with changing buttons?
Another possibility is to use the same set of buttons for both options, but assign associated properties (String label) within t...

mehr als 4 Jahre vor | 0

Beantwortet
I can not modify data in a table
Have you considered using appdata instead of guidata? In this matlab answer (Appdata answer with link), there is a link to a gr...

mehr als 4 Jahre vor | 0

Beantwortet
Script for deleting extra rows
Try this to remove rows with blank Depths: [~,~,dataIn] = xlsread(fileName, worksheetName); index = ~cellfun(@isempty, dataIn(...

mehr als 4 Jahre vor | 0

| akzeptiert

Beantwortet
Error with xlswrite (error 0x800A03EC)
Try xlsprotect from File Exchange. https://www.mathworks.com/matlabcentral/fileexchange/6046-xlsprotect It has worked well for...

mehr als 4 Jahre vor | 0

Beantwortet
2019b installation problem
I had this same problem with 2018b and now again with 2019b. Last year, Matlab Support solved it with the following solution: ...

mehr als 4 Jahre vor | 21

Beantwortet
impoly no longer animates the tracing line after placing other animated line objects
JK from the Matlab Support Team provided a solution. Before the origButtonMotionCB definition above, he suggested adding the fo...

mehr als 4 Jahre vor | 1

| akzeptiert

Frage


impoly no longer animates the tracing line after placing other animated line objects
Our users need to trace around a region on an image using impoly (closed = 0). In some cases they would like to start at a poin...

mehr als 4 Jahre vor | 1 Antwort | 0

1

Antwort

Beantwortet
Trouble with impoly (open) misinterpreting mouse click
The users are running a compiled version of the application with Matlab runtime. I do not get the error on my development compu...

mehr als 4 Jahre vor | 0

Frage


Trouble with impoly (open) misinterpreting mouse click
Our users need to find the area under a curve. We use impoly (open), and they trace the curve on an image. However they are ha...

mehr als 4 Jahre vor | 3 Antworten | 0

3

Antworten

Frage


GUI (GUIDE) with images leaking memory
Matlab 2018b with GUIDE running on Win 7. I am programming a GUI that displays small image "thumbnails" from a directory in an ...

etwa 5 Jahre vor | 0 Antworten | 0

0

Antworten

Frage


How do I use WinOnTop for GUIs?
I have a main GUI with an axes object on which I display an image. Occasionally, the users need to calibrate distances on the i...

etwa 5 Jahre vor | 1 Antwort | 0

1

Antwort

Beantwortet
Radio button option group adding space to end of string property
Thank you for the quick reply, Walter. I will consider your cell-array tip in the future for a more robust GUI. Just before ...

fast 8 Jahre vor | 0

| akzeptiert

Mehr laden