photo

Saptarshi Neogi


Last seen: 3 years 前 自 2020 起处于活动状态

Followers: 0   Following: 0

消息

统计学

All
MATLAB Answers

0 个提问
2 个回答

File Exchange

10 文件

Cody

0 个问题
7 个答案

ThingSpeak

1 公开的 个频道

排名
12,752
of 300,857

声誉
4

贡献数
0 个提问
2 个回答

回答接受率
0.00%

收到投票数
1

排名
2,924 of 21,097

声誉
567

平均
5.00

贡献数
10 文件

下载次数
25

ALL TIME 下载次数
4955

排名
49,849
of 171,361

贡献数
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 years 前

已提交


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

5 years 前 | 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 years 前 | 7 次下载 |

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 years 前 | 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 years 前 | 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 years 前 | 1

已解决


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

5 years 前

已解决


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 years 前

已解决


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 years 前

已解决


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 years 前

已解决


square number
Square a number

5 years 前

已解决


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

5 years 前

已提交


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

5 years 前 | 3 次下载 |

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 years 前 | 1 次下载 |

5.0 / 5
Thumbnail

已提交


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

5 years 前 | 4 次下载 |

5.0 / 5
Thumbnail

已提交


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

5 years 前 | 1 次下载 |

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 years 前 | 2 次下载 |

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 years 前

已提交


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

5 years 前 | 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 years 前 | 1 次下载 |

5.0 / 5