photo

Saptarshi Neogi


Last seen: 거의 3년 전 2020년부터 활동

Followers: 0   Following: 0

메시지

통계

All
MATLAB Answers

0 질문
2 답변

File Exchange

10 파일

Cody

0 문제
7 답안

ThingSpeak

1 공개 채널

순위
12,698
of 300,369

평판
4

참여
0 질문
2 답변

답변 채택
0.00%

획득한 표
1

순위
2,935 of 20,936

평판
563

평균 평점
5.00

참여
10 파일

다운로드 수
24

ALL TIME 다운로드 수
4919

순위
48,795
of 168,436

참여
0 문제
7 답안

점수
80

배지 수
1

참여
0 게시물

참여
1 공개 채널

평균 평점
50

참여
0 하이라이트

평균 좋아요 수

  • Personal Best Downloads Level 3
  • 5-Star Galaxy Level 4
  • First Answer
  • GitHub Submissions Level 2
  • Solver
  • First Submission

배지 보기

Feeds

보기 기준

채널


Personal Health Monitoring System
This is our project in which we will be remotely monitoring the vitals of a person.

대략 4년 전

제출됨


Unipolar Flat Top PAM | Flat top Unipolar PAM
This code helps generate unipolar Flat top PAM.

대략 5년 전 | 다운로드 수: 2 |

5.0 / 5
Thumbnail

제출됨


Binary Frequency Shift Keying (BFSK) MATLAB implementation
This file contains the Matlab implementation of Binary Frequency Shift Keying (BFSK)

대략 5년 전 | 다운로드 수: 3 |

5.0 / 5
Thumbnail

제출됨


Sum the digits of a number recursively
This Matlab code finds the sum of the digits of a number recursively without using any inbuilt functions.

대략 5년 전 | 다운로드 수: 1 |

5.0 / 5

답변 있음
I want to write a recursive Function that can calculate the sum of all the digit. If the input is 12345 then the answer will be 1+2+3+4+5 , without using string2num and loop.
You can do this with any inbuit functions. function x = digit_sum(n) x=0; if n>0 x=mod(n,10)+digit_sum(floor(n./10));%...

대략 5년 전 | 0

답변 있음
Create a program that asks a user to input a number and then finds the sum of digits of the number using recursion. for example 341 = 3+4+1 = 8
% This program does not require any inbuilt functions. function x = digit_sum(n) x=0; if n>0 x=mod(n,10)+digit_sum(floor...

대략 5년 전 | 1

문제를 풀었습니다


Return area of square
Side of square=input=a Area=output=b

대략 5년 전

문제를 풀었습니다


Maximum value in a matrix
Find the maximum value in the given matrix. For example, if A = [1 2 3; 4 7 8; 0 9 1]; then the answer is 9.

대략 5년 전

문제를 풀었습니다


Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...

대략 5년 전

문제를 풀었습니다


BASICS - sum part of vector
Please make a function, where as input you get vector "x" and and vector "c", where in "c" vector you get indexes to sum. Examp...

대략 5년 전

문제를 풀었습니다


square number
Square a number

대략 5년 전

문제를 풀었습니다


Add two numbers
Given a and b, return the sum a+b in c.

대략 5년 전

제출됨


Double Side Band Suppressed Carrier (DSBSC) Modulation
This file contains the MATLAB code for generation of DSBSC signal.

대략 5년 전 | 다운로드 수: 7 |

5.0 / 5
Thumbnail

제출됨


Three Plots in a Single Figure | Multiplication of sine wave
This code multiplies two sinusoids and plots all the three waves into a single plot.

대략 5년 전 | 다운로드 수: 1 |

5.0 / 5
Thumbnail

제출됨


Flat Top Pulse Amplitude Modulation (PAM)
This code helps in the visualization of Flat Top PAM.

대략 5년 전 | 다운로드 수: 2 |

5.0 / 5
Thumbnail

제출됨


Pulse Amplitude Modulation (PAM)
This code enables you to generate PAM.

대략 5년 전 | 다운로드 수: 2 |

4.7 / 5
Thumbnail

제출됨


Unipolar NRZ (Non-Return-to-Zero-Line) Signal Generation
In this code, I have designed the way for representing Unipolar NRZ signal.

대략 5년 전 | 다운로드 수: 3 |

0.0 / 5
Thumbnail

문제를 풀었습니다


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

대략 5년 전

제출됨


Single Side Band Suppressed Carrier (SSBSC) Generation
This file contains the MATLAB code for the generation of SSBSC wave.

대략 5년 전 | 다운로드 수: 2 |

0.0 / 5

제출됨


Amplitude Modulation
This repository contains the MATLAB code for Amplitude Modulation. This can also be done using MATLAB Simulink. I have done it b...

대략 5년 전 | 다운로드 수: 1 |

5.0 / 5