photo

Mitch Lautigar


Last seen: etwa 3 Jahre vor Aktiv seit 2022

Followers: 0   Following: 0

Statistik

MATLAB Answers

1 Frage
30 Antworten

RANG
1.190
of 300.343

REPUTATION
62

BEITRÄGE
1 Frage
30 Antworten

ANTWORTZUSTIMMUNG
0.0%

ERHALTENE STIMMEN
9

RANG
 of 20.926

REPUTATION
N/A

DURCHSCHNITTLICHE BEWERTUNG
0.00

BEITRÄGE
0 Dateien

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANG

of 168.172

BEITRÄGE
0 Probleme
0 Lösungen

PUNKTESTAND
0

ANZAHL DER ABZEICHEN
0

BEITRÄGE
0 Beiträge

BEITRÄGE
0 Öffentlich Kanäle

DURCHSCHNITTLICHE BEWERTUNG

BEITRÄGE
0 Highlights

DURCHSCHNITTLICHE ANZAHL DER LIKES

  • 3 Month Streak
  • Knowledgeable Level 3
  • First Answer

Abzeichen anzeigen

Feeds

Anzeigen nach

Beantwortet
Cannot get a non-singular matrix
Couple comments. Please see my added comments to the code f = @(x) log(exp(x) + 1) + 2 * sin(x); %I'd change "*" to ".*" since ...

mehr als 3 Jahre vor | 0

Beantwortet
How can I dynamically create new structures out of existing ones?
Convert the structure to a table, combine the tables, then convert back to structure. Googling "struct2table" and "table2struct...

mehr als 3 Jahre vor | 0

| akzeptiert

Beantwortet
how to do a 2d plot
You need to use dot indexing since the values passed in will be in an array. Since this looks like a HW problem, I encourage you...

mehr als 3 Jahre vor | 0

| akzeptiert

Beantwortet
A (possibly compact) way to find (1) unique rows, when rows have switched elements, (2) rows with switched elements, and (3) indices of rows with switched elements
There isn't a compact way to do this. You will need to build a for loop for each of the conditions you are attempting to do. I'v...

mehr als 3 Jahre vor | 0

Beantwortet
Find linear indices between two matrices
If A and B are the same size, and you are only attempting to find where the values of A is greater than B, use the following log...

mehr als 3 Jahre vor | 0

| akzeptiert

Beantwortet
Converting data contained in a cell array (4D-single) into .xls matrix for excel
You should be able to access the data inside of "erspdata" and store it elsewhere. an example of this would be "temp = erspdata(...

mehr als 3 Jahre vor | 1

| akzeptiert

Beantwortet
Nested functions in a class - Call the function without including the class name as filename.function
You can put subfunctions/nested functions below the Class call (after the end for classdef) and therefore have local functions f...

mehr als 3 Jahre vor | 0

| akzeptiert

Frage


Loading in Data from large files
Hello everyone, Going to try and explain what i'm trying to do below and I welcome any suggestions the community can provide. ...

mehr als 3 Jahre vor | 0 Antworten | 0

0

Antworten

Beantwortet
Extend a cell array of dates (from days only, to hours and days) in a compact way
stack_array = [stack_array;cell(strjoin(cellstr(curr_date),'-',num2str(j)) )]; should be: stack_array = [stack_array; cell(strj...

mehr als 3 Jahre vor | 1

Beantwortet
Can I control a labview executable with matlab?
MATLAB and LABVIEW are two very distinctly different programs. If you wanted to pass inputs/outputs, you could do that. But havi...

mehr als 3 Jahre vor | 0

| akzeptiert

Beantwortet
Delete duplicate values from string array
You need to use strcmpi() which will compare strings ignoring case and have it index through each spot of the array to compare t...

mehr als 3 Jahre vor | 0

Beantwortet
Get value of a variable
When you call an edit text box, the user inputs some text which will then save. If it is a popup window you are using, you shoul...

mehr als 3 Jahre vor | 0

| akzeptiert

Beantwortet
Extend a cell array of dates (from days only, to hours and days) in a compact way
Use for loops. Here's an untested example of what I mean. stack_array = []; for i = 1:length(C) curr_date = C(i); for j ...

mehr als 3 Jahre vor | 1

Beantwortet
How can I select all parts of a vector?
Remove the -1 from your for loop. for ci = 1:numel(bins)-1

mehr als 3 Jahre vor | 0

Beantwortet
How to create table or matrix from these cell array in MATLAB?
Use a for loop, index through whichever variable you wish and grab each spot of data making sure to convert to double. This woul...

mehr als 3 Jahre vor | 0

Beantwortet
Conversion to string from struct is not possible.
Couple ways to handle this. I'll explain the top 2. 1 - Pull the data out of the struct. num_data = x.data; str_data = x.tex...

mehr als 3 Jahre vor | 0

Beantwortet
break from a nested for loop
https://www.mathworks.com/help/matlab/ref/continue.html Using Matlabs "continue" command should do what you need.

mehr als 3 Jahre vor | 0

Beantwortet
Recognise specific pattern in timetable
After you grab the data, run a simple check to see if the rpm's drastically decrease. This can look something like the following...

mehr als 3 Jahre vor | 1

Beantwortet
How do I decode encrypted data and plot it??
You have a couple different ways to do this. I've listed two below to try and help. Both ways I did it start with the following...

mehr als 3 Jahre vor | 0

| akzeptiert

Beantwortet
Minimization problem with integral constraint
My suggestion is to use a smaller step size for <a,b,c> if you know what they are. Typically when you are trying to fix the curv...

mehr als 3 Jahre vor | 1

Beantwortet
Index in position 1 exceeds array bounds (must not exceed 3) For loop error
The issue you have is that your second for loop is looking in the same indices as your first for loop. Here's my suggestion: in...

mehr als 3 Jahre vor | 0

Beantwortet
Removing specific lines from a .txt file.
As you read this in, you really just need to add in a conditional flag. Specifically, if a "hold" is seen, set a hold_flag to be...

mehr als 3 Jahre vor | 0

Beantwortet
Check for a certain variable in a cell filled with different timetables
What you need to do is to index through every timetable. Since data is a structure, you can use fields command to get all of the...

mehr als 3 Jahre vor | 1

| akzeptiert

Beantwortet
GUI_BUILDING_BUTTONS-NOT_WORKING
Assuming you used guide, dragging a button over to the canvas should populate a button with basic controls. If it's not, then yo...

mehr als 3 Jahre vor | 0

Beantwortet
I am trying to simulate a battery discharge test in which I am trying to control a relay switch that's connecting battery to the load using Flow chart
Error 1: "Error in port widths or dimensions. 'Output Port 1' of 'cell_unit_discharge/Chart/temp' is a one dimensional vector wi...

mehr als 3 Jahre vor | 1

| akzeptiert

Beantwortet
Operands to the || and && operators must be convertible to logical scalar values.
riskUserId=[]; %MATLAB is expecting a 1 or 0 for preexisting conditions. IF the values in the table are true/false, use strcmpi...

mehr als 3 Jahre vor | 1

Beantwortet
Fast Fourier Transform function
Couple things i'd like to comment on to try and help you. Please see bullets below. You're original graph is setup correctly, b...

mehr als 3 Jahre vor | 1

Beantwortet
Add phrase to string if condition is true
int i = 4; String[] testString = new String[i]; for (int j = 0; j < i; j++) { testString[j] = String.valueOf("test"+(j+1))...

mehr als 3 Jahre vor | 0

| akzeptiert

Beantwortet
How can i clear a row or all rows of UItable in AppDesigner?
https://www.mathworks.com/matlabcentral/answers/40789-is-there-a-way-to-delete-a-whole-row-in-a-uitable-by-clicking-a-delete-row...

mehr als 3 Jahre vor | 0

Beantwortet
Plot Semilog/loglog data missing in plot
I believe the issue you are seeing is that you cannot take the log of a negative number. Since the majority of your data is nega...

mehr als 3 Jahre vor | 0

Mehr laden