photo

RAJASEKAR S


自 2018 起处于活动状态

Followers: 0   Following: 0

统计学

MATLAB Answers

10 个提问
0 个回答

排名
162,153
of 300,853

声誉
0

贡献数
10 个提问
0 个回答

回答接受率
50.0%

收到投票数
0

排名
 of 21,094

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名

of 171,319

贡献数
0 个问题
0 个答案

评分
0

徽章数量
0

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • Thankful Level 3

查看徽章

Feeds

排序方式:

提问


How to provide 2-Y axis scale in a plot function ?
How to provide 2 Yaxis scale in plot function for eg as in the image I have done this with excel, Similarly how to plot in MATLA...

8 years 前 | 1 个回答 | 0

1

个回答

提问


How to find the intersection points in a multidimensional array
A=4X2X10;B=4X2X10;(array size of A and B) how to find intersect points between A and B eg like this _ _ * I=(4X2X10)(ar...

8 years 前 | 1 个回答 | 0

1

个回答

提问


how to convert 2X4X10 array into 4x2x10 array?
eg; V(:,:,1)=[5 8 9 7;7 8 4 3]........ V(:,:,10)=[7 4 1 9;4 8 6 3] How to convert V(2,4,10) array to V(4,2,10) eg; V(:,:,1)=...

8 years 前 | 1 个回答 | 0

1

个回答

提问


How to combine repeated same value to a single value or variable
X=[3 5 ; 1 2 ; 5 6 ; 3 5 ] How to make like Y=[3 5; 1 2; 5 6] ie; representing [3 5] for single time rather displaying it twi...

8 years 前 | 1 个回答 | 0

1

个回答

提问


How to check the condition of both &(and), |(OR) operation in a single line ?
Vx=[-35 0 -35] Vy=[0 60.2 0] if -35==Vx(1,1)|Vx(1,2)|Vx(1,3) & 0=Vy(1,1)|Vy(1,2)|Vy(1,3) so this is the condition but...

8 years 前 | 1 个回答 | 0

1

个回答

提问


How to store the values which satisfy the and operation ?
<</matlabcentral/answers/uploaded_files/108035/rp%204.png>> how to store the value which satisfies the condition For eg: in...

8 years 前 | 2 个回答 | 0

2

个回答

提问


How to store the intermediate values in a for loop
for i=(1:4) Vmi=[X(i),Z(i)] end [X(i),Z(i)] are known How to store the values as Vm1,Vm2.. Thanks in advance. <</matlab...

8 years 前 | 0 个回答 | 0

0

个回答

提问


How to find the minimum value in column of the array and retrieve the corresponding row ?
V= [-35 ,60.2 ; -0.35,80.6 ; 0, 0] Need to find the min value across the column of the array and store its corresponding row va...

8 years 前 | 1 个回答 | 0

1

个回答

提问


How to store multiple for loop variables separately ?
for i = 1:4 ; Vmi=[X(i),Z(i)]; end I have X=[10 14 8] & Y=[45 7 63] how to store Vm1..Vm4 as separate variables for eg Vm1=...

8 years 前 | 0 个回答 | 0

0

个回答

提问


How can I determine the non repeated coordinates of an array
X=[3 4;2 1;5 6]; Y=[1 2;3 4;2 1]; C=intersect(X,Y,'rows') numberCommonRows = size(C,1); from this I can determine the values...

8 years 前 | 1 个回答 | 0

1

个回答