photo

CAM


Last seen: 12 Tage vor Aktiv seit 2012

Followers: 0   Following: 0

Nachricht

Statistik

All
MATLAB Answers

16 Fragen
25 Antworten

Cody

0 Probleme
332 Lösungen

RANG
1.001
of 300.369

REPUTATION
77

BEITRÄGE
16 Fragen
25 Antworten

ANTWORTZUSTIMMUNG
68.75%

ERHALTENE STIMMEN
30

RANG
 of 20.936

REPUTATION
N/A

DURCHSCHNITTLICHE BEWERTUNG
0.00

BEITRÄGE
0 Dateien

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANG
457
of 168.436

BEITRÄGE
0 Probleme
332 Lösungen

PUNKTESTAND
3.903

ANZAHL DER ABZEICHEN
14

BEITRÄGE
0 Beiträge

BEITRÄGE
0 Öffentlich Kanäle

DURCHSCHNITTLICHE BEWERTUNG

BEITRÄGE
0 Highlights

DURCHSCHNITTLICHE ANZAHL DER LIKES

  • 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

Feeds

Anzeigen nach

Frage


Identify exact jittered point from swarmchart plot
I created a horizontal swarmchart in app designer. The input data have numeric values and grouping tags (intGroups) associated ...

etwa 2 Monate vor | 1 Antwort | 0

1

Antwort

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...

mehr als ein Jahr 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...

mehr als 2 Jahre 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...

mehr als 2 Jahre 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...

mehr als 2 Jahre 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...

mehr als 2 Jahre 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?

mehr als 2 Jahre 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

mehr als 2 Jahre 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...

etwa 3 Jahre 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...

etwa 3 Jahre 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...

fast 5 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...

mehr als 5 Jahre vor | 0

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

fast 6 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...

fast 6 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...

fast 6 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 ...

fast 6 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...

fast 6 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...

etwa 6 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...

etwa 6 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...

etwa 6 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...

etwa 6 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(...

etwa 6 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...

etwa 6 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: ...

etwa 6 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...

etwa 6 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...

etwa 6 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...

etwa 6 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 6 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 ...

mehr als 6 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...

mehr als 6 Jahre vor | 1 Antwort | 0

1

Antwort

Mehr laden