photo

Raghunathraju

MathWorks

Last seen: 3 mois il y a Actif depuis 2023

Followers: 0   Following: 0

I am an Application Support Engineer at MathWorks. My major responsibilities include application development in RF Domain at MathWorks DISCLAIMER: Any advice or opinions here are my own, and in no way reflect that of MathWorks

Statistiques

All
MATLAB Answers

0 Questions
27 Réponses

Cody

0 Problèmes
11 Solutions

RANG
1 690
of 300 857

RÉPUTATION
40

CONTRIBUTIONS
0 Questions
27 Réponses

ACCEPTATION DE VOS RÉPONSES
0.00%

VOTES REÇUS
2

RANG
 of 21 097

RÉPUTATION
N/A

CLASSEMENT MOYEN
0.00

CONTRIBUTIONS
0 Fichier

TÉLÉCHARGEMENTS
0

ALL TIME TÉLÉCHARGEMENTS
0

RANG
28 988
of 171 361

CONTRIBUTIONS
0 Problèmes
11 Solutions

SCORE
178

NOMBRE DE BADGES
2

CONTRIBUTIONS
0 Publications

CONTRIBUTIONS
0 Public Chaîne

CLASSEMENT MOYEN

CONTRIBUTIONS
0 Point fort

NOMBRE MOYEN DE LIKES

  • 3 Month Streak
  • Knowledgeable Level 2
  • Community Group Solver
  • Solver
  • First Answer

Afficher les badges

Feeds

Afficher par

Réponse apportée
Could I design a semi circular antenna array in the array designer?
Hi, You can use coformalArray for designing an array of any shape in antennaArrayDesigner app or you can do the following code...

plus de 2 ans il y a | 0

| A accepté

Réponse apportée
I'm using antenna toolbox. Can't add a dielectric layer without adding a ground plane
Hi, You can use pcbStack for adding dielectric layer without ground plane. You can refer to the following ant=pcbStack(fractal...

plus de 2 ans il y a | 0

Réponse apportée
Data Formatting for patternCustom function
Hi, For plotting patternCustom ,the data needs to be as below format , load data.mat phi=data(:,1) theta=data(:,2) MageE...

plus de 2 ans il y a | 0

Réponse apportée
How do I create a custom FM broadcast antenna?
Hi, Currently we have three apps supporting Antenna Design , 1.Antenna Designer Here you can select antennas from the ant...

plus de 2 ans il y a | 0

Réponse apportée
How to use an imported antenna farfield as a source
Hi, As per my understanding, you want to know how to use imported data and use it as a source in Antenna toolbox. You can us...

plus de 2 ans il y a | 0

Réponse apportée
Generating the gain values of a steered ULA
Hi, As per my understanding, you want to get the gain values from the ‘pattern’ function of your code. You can simply assign a...

plus de 2 ans il y a | 0

Réponse apportée
Working on Yagi PCB antenna
Hi, As per my understanding, you want to know how to resolve the ‘out of memory’ issue for your model in pcbAntennaDesignerAp...

plus de 2 ans il y a | 0

Réponse apportée
Add Custom TextField Component to Simulink Toolstrip
Hi Andrew, Currently Custom Tab in Simulink Toolstrip is only supporting PushButton, DropDownButton, SplitButton, and EmptyCont...

presque 3 ans il y a | 0

| A accepté

Réponse apportée
Legend is not displayed in my plot
Hi As per my understanding you want to display legend in your plot, but you are unable to see it as it is behind the axes ax2...

presque 3 ans il y a | 0

| A accepté

Réponse apportée
Curve smoothing of a voltage-time plot
Hi Chinmaya, You can smooth your curve using smooth function. You can refer the following example to use the smooth fu...

presque 3 ans il y a | 0

Réponse apportée
Error in optimconstr() when used with single string vs array of string
Hi Raviraj, The 'optimconstr' function cannot have a single argument as string, The input arguments can be a string array, a ce...

presque 3 ans il y a | 1

| A accepté

Réponse apportée
saveas to pdf but get a blank
Hi Yuqing, I understand that you are unable to save the figure to pdf using ‘saveas’ option. Instead, you can try print option ...

presque 3 ans il y a | 0

Réponse apportée
How to simulate a Differential Microphone Array with Sensor Array Analyzer?
Hi dabe, As per my understanding, you got the desired result for DMA in MATLAB Code and you want to get the same in sensorArray...

presque 3 ans il y a | 0

Réponse apportée
Change Constant Block's Value's Font
Hi Richard, You can’t change the font of the value in Constant block, instead you can try the following: Mak...

presque 3 ans il y a | 0

| A accepté

Réponse apportée
MathWorks Account Unavailable - Technical Issue
Hi , You can refer to the following MATLAB Answer to understand why you are facing the issue https://www.mathworks.com/matlabc...

presque 3 ans il y a | 0

Réponse apportée
Importing antenna with several materials from CST
Hi mark, As per my understanding, you want to import your antenna model to MATLAB and investigate the patterns. You can use ...

presque 3 ans il y a | 0

| A accepté

Réponse apportée
Create multiple checkbox in a loop
Hi Kishore, As per my understanding, you want to create multiple checkboxes in a loop and have the same name as the loop....

presque 3 ans il y a | 0

Réponse apportée
Infinite Ground plane for custom PCB-Antenna
Hi apex, As per my understanding, you want to set ground plane length to be infinite for a custom PCB Stack antenna. Currentl...

presque 3 ans il y a | 0

Réponse apportée
说明文档中的Pattern函数的type:gain在2023a版本中并不支持?
Hi xu yang, As per my understanding,you want to plot Phase pattern of an antenna, but you are unable to do that using 2022b and...

presque 3 ans il y a | 1

Réponse apportée
RF BUDGET ANALYZER - How to simulate compression point (P1dB and PSAT)
Hi Alon, You can plot the power characteristics of an amplifier to understand the P1dB and Psat points of an amplifier, but...

presque 3 ans il y a | 0

Réponse apportée
PCB Antenna Designer & memory consumption based on dielectric materials
Hi A_G, As per my understanding, you want to know, how to reduce the memory size after changing the dielectric material. Bas...

presque 3 ans il y a | 0

A résolu


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

presque 3 ans il y a

A résolu


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

presque 3 ans il y a

A résolu


Vector creation
Create a vector using square brackets going from 1 to the given value x in steps on 1. Hint: use increment.

presque 3 ans il y a

A résolu


Create a vector
Create a vector from 0 to n by intervals of 2.

presque 3 ans il y a

A résolu


Doubling elements in a vector
Given the vector A, return B in which all numbers in A are doubling. So for: A = [ 1 5 8 ] then B = [ 1 1 5 ...

presque 3 ans il y a

A résolu


Flip the vector from right to left
Flip the vector from right to left. Examples x=[1:5], then y=[5 4 3 2 1] x=[1 4 6], then y=[6 4 1]; Request not ...

presque 3 ans il y a

A résolu


Whether the input is vector?
Given the input x, return 1 if x is vector or else 0.

presque 3 ans il y a

A résolu


Find max
Find the maximum value of a given vector or matrix.

presque 3 ans il y a

A résolu


Get the length of a given vector
Given a vector x, the output y should equal the length of x.

presque 3 ans il y a

Charger plus