photo

siya lolo


Active since 2018

Followers: 0   Following: 0

Statistics

MATLAB Answers

7 Questions
1 Answer

RANK
171,305
of 300,641

REPUTATION
0

CONTRIBUTIONS
7 Questions
1 Answer

ANSWER ACCEPTANCE
57.14%

VOTES RECEIVED
0

RANK
 of 21,036

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK

of 169,946

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 2
  • Thankful Level 1

View badges

Feeds

View by

Question


I want to plot a histogram with the following code, but it's not giving me the desired output?
x = [1 2 3 4 5]; y = [40.13 23.14 16 11.03 9.73]; hist(x,y) tittle('Duration of ridging anticyclones') xlabel = (('number of...

7 years ago | 1 answer | 0

1

answer

Question


Hi everyone. the following code is giving me an error, "Subscript indices must either be real positive integers or logicals" at line 16, please help me resolve it
A = load('my_dates.txt'); for iLength = 1:56 if iLength < 10 label = sprintf('0%s',num2str(iLength)); else ...

7 years ago | 1 answer | 0

1

answer

Question


Hi everyone, i need help. When I run my script, i don't get an error message all I get from the command line is 'Lab 1: no data', what might be the problem with my script?
for iLength = 1:42 if iLength < 10 label = sprintf('0%s',num2str(iLength)); else label = num2s...

7 years ago | 0 answers | 0

0

answers

Question


Error using fprintf Invalid file identifier. Use fopen to generate a valid file identifier.
fn=sprintf('ridging_daily_evolution_1980.txt'); A=load(fn); [m,n]=size(A); for i=1:m-1 DUR=A(i,5...

7 years ago | 1 answer | 0

1

answer

Answered
Error using fprintf Invalid file identifier. Use fopen to generate a valid file identifier.
for i=1:m-1 if A(i,5)~=0 && A(i+1,5)==0 DUR=A(i,5); if DUR ~=1 DATE=A(i-(DUR-...

7 years ago | 0

Question


Error using fprintf Invalid file identifier. Use fopen to generate a valid file identifier.
Hi everyone, am getting this error message and i don't know how to fix it. B = [STR_DATE,num2str(lon),num2str(lat...

7 years ago | 2 answers | 0

2

answers