photo

Bhuvana Krishnaraj


Last seen: 4년 초과 전 2019년부터 활동

Followers: 0   Following: 0

통계

MATLAB Answers

0 질문
5 답변

순위
20,727
of 300,381

평판
2

참여
0 질문
5 답변

답변 채택
0.00%

획득한 표
1

순위
 of 20,941

평판
N/A

평균 평점
0.00

참여
0 파일

다운로드 수
0

ALL TIME 다운로드 수
0

순위

of 168,477

참여
0 문제
0 답안

점수
0

배지 수
0

참여
0 게시물

참여
0 공개 채널

평균 평점

참여
0 하이라이트

평균 좋아요 수

  • First Answer

배지 보기

Feeds

보기 기준

답변 있음
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...

거의 6년 전 | 1

답변 있음
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;...

거의 6년 전 | 0

답변 있음
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...

거의 6년 전 | 0

답변 있음
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 ...

대략 6년 전 | 0

답변 있음
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...

6년 초과 전 | 0