Saptarshi Neogi
Followers: 0 Following: 0
Statistiques
0 Questions
2 Réponses
10 Fichiers
Cody0 Problèmes
7 Solutions
RANG
12 543
of 295 467
RÉPUTATION
4
CONTRIBUTIONS
0 Questions
2 Réponses
ACCEPTATION DE VOS RÉPONSES
0.00%
VOTES REÇUS
1
RANG
3 021 of 20 234
RÉPUTATION
531
CLASSEMENT MOYEN
5.00
CONTRIBUTIONS
10 Fichiers
TÉLÉCHARGEMENTS
68
ALL TIME TÉLÉCHARGEMENTS
4599
CONTRIBUTIONS
0 Publications
CONTRIBUTIONS
1 Public Chaîne
CLASSEMENT MOYEN
50
CONTRIBUTIONS
0 Point fort
NOMBRE MOYEN DE LIKES
Feeds
Chaîne
Personal Health Monitoring System
This is our project in which we will be remotely monitoring the vitals of a person.
environ 3 ans il y a
A soumis
Unipolar Flat Top PAM | Flat top Unipolar PAM
This code helps generate unipolar Flat top PAM.
environ 4 ans il y a | 4 téléchargements |
A soumis
Binary Frequency Shift Keying (BFSK) MATLAB implementation
This file contains the Matlab implementation of Binary Frequency Shift Keying (BFSK)
environ 4 ans il y a | 13 téléchargements |
A soumis
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.
environ 4 ans il y a | 1 téléchargement |
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));%...
environ 4 ans il y a | 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...
environ 4 ans il y a | 1
A résolu
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.
environ 4 ans il y a
A résolu
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 ...
environ 4 ans il y a
A résolu
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...
environ 4 ans il y a
A soumis
Double Side Band Suppressed Carrier (DSBSC) Modulation
This file contains the MATLAB code for generation of DSBSC signal.
environ 4 ans il y a | 12 téléchargements |
A soumis
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.
environ 4 ans il y a | 1 téléchargement |
A soumis
Flat Top Pulse Amplitude Modulation (PAM)
This code helps in the visualization of Flat Top PAM.
environ 4 ans il y a | 7 téléchargements |
A soumis
Pulse Amplitude Modulation (PAM)
This code enables you to generate PAM.
environ 4 ans il y a | 16 téléchargements |
A soumis
Unipolar NRZ (Non-Return-to-Zero-Line) Signal Generation
In this code, I have designed the way for representing Unipolar NRZ signal.
environ 4 ans il y a | 7 téléchargements |
A résolu
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:...
environ 4 ans il y a
A soumis
Single Side Band Suppressed Carrier (SSBSC) Generation
This file contains the MATLAB code for the generation of SSBSC wave.
environ 4 ans il y a | 7 téléchargements |
A soumis
Amplitude Modulation
This repository contains the MATLAB code for Amplitude Modulation. This can also be done using MATLAB Simulink. I have done it b...
environ 4 ans il y a | 1 téléchargement |