photo

Maria De Silva


Active since 2016

Followers: 0   Following: 0

Statistics

MATLAB Answers

8 Questions
0 Answers

RANK
37,671
of 300,763

REPUTATION
1

CONTRIBUTIONS
8 Questions
0 Answers

ANSWER ACCEPTANCE
12.5%

VOTES RECEIVED
0

RANK
 of 21,082

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK

of 170,923

CONTRIBUTIONS
0 Problems
0 Solutions

SCORE
0

NUMBER OF BADGES
0

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Discussions

AVERAGE NO. OF LIKES

  • Thankful Level 1

View badges

Feeds

View by

Question


Why does it say f plot error line 97
I have the equation from ysol is 3*cos(2*x) - 3*exp(-3*x) - 2*sin(2*x) however whenever i plot it using fplot it gives me an er...

8 years ago | 1 answer | 0

1

answer

Question


How to I break out of this loop?
signal = []; fid=fopen('transmission_data.txt'); while 1 tline = fgetl(fid); if ~ischar(tline), ...

9 years ago | 1 answer | 0

1

answer

Question


How do I underline in fprintf?
fprintf( 'Year No Balance(1st Jan) Interest(31st Dec) Total(31st Dec)') I want it to display Year No as underlined...

9 years ago | 1 answer | 0

1

answer

Question


Loops error index dimension?
I'm trying to get my code to let me in put a range. Then in that range tell me how many prime numbers there are and what are the...

9 years ago | 1 answer | 0

1

answer

Question


How do import data?
For this part I have to get data from the first row. Which I know you use fgetl. But what if my data has 4 columns and 5 rows. A...

9 years ago | 1 answer | 0

1

answer

Question


Function changing the display?
if true % code function [ out ] = factorialeq( integer ) if( ~isinteger(integer) || integer < 0) disp('error') ...

9 years ago | 2 answers | 0

2

answers

Question


Writing a function that gives me the elapsed days, when entering the day, month and year as inputs.
Write a function that takes the day, month and year as input and returns the number of elapsed days? function num_days = E...

9 years ago | 0 answers | 0

0

answers

Question


How to design a function that compute the factorial of an integer. The function outputs an error message if user enter a non negative value?
function [ out ] = factorialeq( integer ) out=factorial(integer); if( ~isreal(integer) || integer < 0) erro...

9 years ago | 2 answers | 0

2

answers