photo

KK14


Last seen: 7개월 전 2019년부터 활동

Followers: 0   Following: 0

A student aspiring to learn Matlab and implement real time tasks using Matlab

통계

All
MATLAB Answers

12 질문
0 답변

Cody

0 문제
17 답안

순위
20,762
of 300,853

평판
2

참여
12 질문
0 답변

답변 채택
58.33%

획득한 표
2

순위
 of 21,094

평판
N/A

평균 평점
0.00

참여
0 파일

다운로드 수
0

ALL TIME 다운로드 수
0

순위
27,954
of 171,319

참여
0 문제
17 답안

점수
188

배지 수
1

참여
0 게시물

참여
0 공개 채널

평균 평점

참여
0 하이라이트

평균 좋아요 수

  • Thankful Level 3
  • MATLAB Central Treasure Hunt Finisher
  • Solver

배지 보기

Feeds

보기 기준

질문


5G NR PRACH for NTN Use Case
Hi all, I'd like to use NTN channel model for PRACH preamble detection using the example: https://de.mathworks.com/help/5g/ug/5...

7개월 전 | 답변 수: 1 | 0

1

답변

질문


Data Rate calculation in 5G NR TDD scheduling
Hi all, Could someone please help me out in finding the data rate calculated for each UE in the 5G NR TDD/FDD scheduling exampl...

대략 4년 전 | 답변 수: 1 | 0

1

답변

질문


Channel impulse response Implementation
Hi, I wish to implement CIR with formula Please guide me in implementing the above equation using Matlab, especially the de...

4년 초과 전 | 답변 수: 0 | 1

0

답변

질문


Antenna parameters used in NR PDSCH throughput example - 5G toolbox
Hello, Can someone please tell me where in the example I can find the antenna height and distance between UE and gNodeB conside...

대략 5년 전 | 답변 수: 0 | 0

0

답변

문제를 풀었습니다


Length of the hypotenuse
Given short sides of lengths a and b, calculate the length c of the hypotenuse of the right-angled triangle. <<https://i.imgu...

대략 5년 전

문제를 풀었습니다


Column Removal
Remove the nth column from input matrix A and return the resulting matrix in output B. So if A = [1 2 3; 4 5 6]; ...

대략 5년 전

문제를 풀었습니다


Pizza!
Given a circular pizza with radius _z_ and thickness _a_, return the pizza's volume. [ _z_ is first input argument.] Non-scor...

대략 5년 전

질문


System-level simulation using 5G tool box
Hello, While 5G library toolbox. I could find and use all of the E2E simulation functions but could not find the example functi...

대략 5년 전 | 답변 수: 1 | 0

1

답변

질문


Latency calculation for 5g scenario
Hello, In 5g toolbox, we have a script to calculate the throughput of NR PDSCH and PUSCH. Can anyone please help me out in calc...

대략 5년 전 | 답변 수: 1 | 1

1

답변

질문


Addition of adjacent rows of a column matrix
Hello, here is a part of my code where I am trying to add adjacent rows, i.e a(R1)+a(R2) =b(R2), a(R2)+a(R3) = b(R3) and so on. ...

대략 5년 전 | 답변 수: 1 | 0

1

답변

질문


Distance between points in a table
Hello all, I have a table containing the (x,y) coordinates and I need to find the distance between each point and save it as an...

대략 5년 전 | 답변 수: 1 | 0

1

답변

문제를 풀었습니다


Reverse the vector
Reverse the vector elements. Example: Input x = [1,2,3,4,5,6,7,8,9] Output y = [9,8,7,6,5,4,3,2,1]

대략 5년 전

문제를 풀었습니다


Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...

대략 5년 전

문제를 풀었습니다


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년 전

문제를 풀었습니다


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

대략 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년 전

질문


random selection of a cell
Hello, I have a cell(matrix) of size 100*100.I need to scan each column and choose 4 consecutive random cells( (1*1)*4) for ass...

5년 초과 전 | 답변 수: 2 | 0

2

답변

질문


Categorizing array elements based on percentage
I have an array, whose odd indices are to be divided into 4 categories based on some predefined percentage.For example, say X = ...

5년 초과 전 | 답변 수: 1 | 0

1

답변

문제를 풀었습니다


Solve a System of Linear Equations
*Example*: If a system of linear equations in _x&#8321_ and _x&#8322_ is: 2 _x&#8321;_ + _x&#8322;_ = 2 _x&#8321;...

5년 초과 전

문제를 풀었습니다


Find the Oldest Person in a Room
Given two input vectors: * |name| - user last names * |age| - corresponding age of the person Return the name of the ol...

5년 초과 전

문제를 풀었습니다


Convert from Fahrenheit to Celsius
Given an input vector |F| containing temperature values in Fahrenheit, return an output vector |C| that contains the values in C...

5년 초과 전

문제를 풀었습니다


Calculate Amount of Cake Frosting
Given two input variables |r| and |h|, which stand for the radius and height of a cake, calculate the surface area of the cake y...

5년 초과 전

문제를 풀었습니다


Inner product of two vectors
Find the inner product of two vectors.

5년 초과 전

문제를 풀었습니다


Arrange Vector in descending order
If x=[0,3,4,2,1] then y=[4,3,2,1,0]

5년 초과 전

문제를 풀었습니다


Select every other element of a vector
Write a function which returns every other element of the vector passed in. That is, it returns the all odd-numbered elements, s...

5년 초과 전

문제를 풀었습니다


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년 초과 전

질문


Updation of Cell Array
I have a matrix of 100*400.I need to read a cell(from matrix), take its field as store it as a structure, update one field in th...

6년 초과 전 | 답변 수: 1 | 0

1

답변

질문


Adding columns in a cell
I have a cell which is 100*4100. I need to take first 100 columns as a matrix and the next 100 columns as the 2nd matrix and fin...

6년 초과 전 | 답변 수: 1 | 0

1

답변