photo

Sagar Saxena


自 2018 起处于活动状态

Followers: 0   Following: 0

统计学

  • Thankful Level 2
  • Thankful Level 1

查看徽章

Feeds

排序方式:

提问


In a sorted vector ,how do I compare first element to other elements and then find if there are any duplicates , if yes take their indexes and replace it with 0
A = [ 1, 1 , 2, 3, 4] I want to first compare first element to all other elements, if there is any duplicate (like 1, 1 in t...

5 years 前 | 4 个回答 | 0

4

个回答

提问


I have a main class which takes 2 arguments, Two arguments(Same) are coming from 2 another classes which are doing differnet computations . Now I need to define a 3rd argument which allows user to specify which class he wish to chooses .
Lest say : Main Class is : obj = mainClass (a,b) other 2 classes which uses a,b are : 1) obj = Sum(a,b) 2) obj = Diff(a,...

6 years 前 | 1 个回答 | 0

1

个回答

提问


I need to map a binary array to 2 differnet values corresponding to 0 & 1
A= zeros(320,320); A(60:180,60:180)=1; lets say I wanna make all 1's = 2+3i and all 0's equals to 8-4i. What would be the...

6 years 前 | 1 个回答 | 0

1

个回答

提问


How do I fill an array with 1's in particular rows and columns that I want
array = zeros(100, 100) Now, I need to make a square filled with 1's(on the boundary as well as inside), from row 20 to 80 an...

6 years 前 | 1 个回答 | 0

1

个回答

提问


Whats wrong with the below equation , I get an error message when i keep this equation in a for loop to run multiple times.
Expected one output from a curly brace or dot indexing expression, but there were 2 results. Error in line : I= obj...

6 years 前 | 1 个回答 | 0

1

个回答

提问


I am plotting (x,y) coordinates in a simple plot and the plotted values lies in 1st Quadrant.However, I want to see all the 4 quadrants , how to customize it?
Lets say my cordinates are as follows x= [0 1 2 3 4 5] y= [0 1 2 3 4 5] However, i want to set my axis from : x= (-20 ,...

6 years 前 | 2 个回答 | 0

2

个回答

提问


How to save variable (Sum1) which is a plot , so that I can use it in later subsection to do some more computations.
for ik=1:40 Image = S(ik)*((abs(Phi(:,:,ik)).^2)); Sum1= Sum1+Image; end mesh(fftshift(X),fftshift(Y), fft...

6 years 前 | 0 个回答 | 0

0

个回答

提问


How do I multiply two variables of form A(:,:, i) and B(:,:,i) where i = 20
SO basically , I need the product of these 2 variables for 20 iterations and then add the products. I tried using * and .* but ...

6 years 前 | 2 个回答 | 0

2

个回答

提问


I need to model a source pattern shift on a mesh grid( when light source is tilted by some angle theta)
Situation: when light rays falls vertically (i.e zero degree tilt) , lets say the pattern formed on a grid is at location (x,y)....

6 years 前 | 0 个回答 | 0

0

个回答

提问


If anyone can help conceptually,
I have a code which models the light coming from a source normally (In terms of frequency and Wavelength) If I want to tilt the...

6 years 前 | 0 个回答 | 0

0

个回答

提问


What is meant by this syntax : ( another variable in brackets after a variable)
Jmatf11(fmag>0) = (fx(fmag>0)./fmag(fmag>0)).^2 .* Jmf(fmag>0);

6 years 前 | 1 个回答 | 0

1

个回答

提问


What is meant by this syntax : L(1) , what does these braces after any variable mean?
%This is just a portion of code so don't bother about actual values: L = a; n = n1; fmax = n./L; dfx = 1/L(1); dfy = ...

6 years 前 | 1 个回答 | 0

1

个回答