photo

Stephen Tete


Last seen: 10 months ago Active since 2022

Followers: 0   Following: 0

Statistics

MATLAB Answers

8 Questions
2 Answers

RANK
171,931
of 297,457

REPUTATION
0

CONTRIBUTIONS
8 Questions
2 Answers

ANSWER ACCEPTANCE
100.0%

VOTES RECEIVED
0

RANK
 of 20,438

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK

of 158,938

CONTRIBUTIONS
0 Problems
0 Solutions

SCORE
0

NUMBER OF BADGES
0

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • Thankful Level 3
  • First Answer

View badges

Feeds

View by

Question


Why can't I edit y label and x labels in matlab subplot figures (.FIG)
I have a 3 x 2 subplots (tiledlayout) with a common Y label and X label. I want to edit the labels and change the font and fonts...

1 year ago | 1 answer | 0

1

answer

Question


How can I fit a curve at the bottom of the plot below?
I have the attached dataset and I want to fit a curve at the bottom of the curve. See the attached photo. The original data is...

1 year ago | 1 answer | 0

1

answer

Question


How can I plot three columns of a dataset to produce an image or a map?
I have the randomly generated data with the final dataset in the Variable 'DATA' =========================================== D...

2 years ago | 1 answer | 0

1

answer

Question


How do I query 200 cells containing datasets of unequal lengths using one data having complete data?
I have this code that overwrites nan values (stored in refom) with data from different cells (A). A has 200 cells each containin...

2 years ago | 1 answer | 0

1

answer

Question


How do I using logical values to write 'NAN' to non-existing data?
I have a data set with non equal lengths A = B = H m lat ...

2 years ago | 1 answer | 0

1

answer

Question


How do I find slope for large dataset?
I have a large dataset and i want to compute the gradient for between two corresponding data and their corresponding times for a...

2 years ago | 2 answers | 0

2

answers

Answered
load("stormData"); summaryRegionCosts = groupsummary(stormData, 'Region',{"min","max","median","mean"} , 'Total_Cost'); stormDataPos = stormData.Total_Cost> 0 ; summaryRegion
I’m not sure what your error is but I suggest you load with “readtable” Else post your error let’s see

2 years ago | 0

Answered
why am I getting this error ? Any help please
files = dir('*.Cmn'); for i = 1:length(files) data1 = files(i).name; f = fopen(data1); data = textscan(f,'%f%f%f...

2 years ago | 0

| accepted

Question


why am I getting this error ? Any help please
for i = 1:length(file_list) filename = file_list(i); data_in = readtable([path_n filename]); Error using readtable ...

2 years ago | 2 answers | 0

2

answers