Community Profile

photo

Saptarshi Neogi


Last seen: 1年以上 前 2020 年からアクティブ

Followers: 0   Following: 0

連絡

統計

All
  • 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.

2年以上 前

送信済み


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

3年以上 前 | ダウンロード 1 件 |

Thumbnail

送信済み


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

3年以上 前 | ダウンロード 27 件 |

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.

3年以上 前 | ダウンロード 2 件 |

回答済み
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));%...

3年以上 前 | 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...

3年以上 前 | 1

解決済み


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

3年以上 前

解決済み


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.

3年以上 前

解決済み


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 ...

3年以上 前

解決済み


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...

3年以上 前

解決済み


square number
Square a number

3年以上 前

解決済み


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

3年以上 前

送信済み


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

3年以上 前 | ダウンロード 20 件 |

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.

3年以上 前 | ダウンロード 1 件 |

Thumbnail

送信済み


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

3年以上 前 | ダウンロード 7 件 |

Thumbnail

送信済み


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

3年以上 前 | ダウンロード 27 件 |

Thumbnail

送信済み


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

3年以上 前 | ダウンロード 24 件 |

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:...

3年以上 前

送信済み


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

3年以上 前 | ダウンロード 6 件 |

送信済み


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

3年以上 前 | ダウンロード 3 件 |