photo

Bhuvana Krishnaraj


Last seen: ungefär 4 år ago Active since 2019

Followers: 0   Following: 0

Statistics

MATLAB Answers

0 Questions
5 Answers

RANK
15 639
of 297 503

REPUTATION
2

CONTRIBUTIONS
0 Questions
5 Answers

ANSWER ACCEPTANCE
0.00%

VOTES RECEIVED
1

RANK
 of 20 449

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK

of 159 017

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

  • First Answer

View badges

Feeds

View by

Answered
code to accept 2 numbers and to display armstrong number between the 2?
x=input('Enter number: '); disp(x) temp=x; y = 0; h=fprintf('%d',x); %% it return number of digits while x > 0 t...

ungefär 5 år ago | 1

Answered
code to accept 2 numbers and to display armstrong number between the 2?
x=input('Enter number: '); disp(x) temp=x; y = 0; while x > 0 t = mod(x,10); y = y+t^3; x = (x-t)/10;...

ungefär 5 år ago | 0

Answered
How do you write a matlab function that identifies if a string is a palindrome or not?
x=input('Enter number: '); temp=x; y = 0; while x > 0 t = mod(x,10); y = 10*y+t; x = (x-t)/10; %% witho...

ungefär 5 år ago | 0

Answered
how to install a downloaded toolbox?
i want to use deep learning tool box, in the Add-On Explorer it showing that installed, but i cant use any function inside that ...

mer än 5 år ago | 0

Answered
Why do I encounter a "Received fatal alert: protocol_version" when installing a Support Package in MATLAB R2017a or earlier?
When installing a Support Package in MATLAB R2015a, I keep getting this message (Fatal Alert : Protocol_version). I tried that j...

nästan 6 år ago | 0