photo

Nihal Rao


自 2018 起处于活动状态

Followers: 0   Following: 0

统计学

MATLAB Answers

4 个提问
0 个回答

排名
135,127
of 301,642

声誉
0

贡献数
4 个提问
0 个回答

回答接受率
100.0%

收到投票数
0

排名
 of 21,371

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名

of 175,922

贡献数
0 个问题
0 个答案

评分
0

徽章数量
0

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • Thankful Level 2
  • Thankful Level 1

查看徽章

Feeds

排序方式:

提问


Issues while importing excel file
I have this very basic problem while importing a xlsx file and not able to figure out the reason. I import the file using the fo...

7 years 前 | 1 个回答 | 0

1

个回答

提问


Q is a 3D array of size 3x3xn. I want to use the next value of Q i.e. Q(:,:,2) and so on, every time j is even. Is there a way to do it in MATLAB.
for j=1:length(p) stress(:,:,j)=(Q(:,:,1)*strain(:,:,j)); if mod(j, 2) == 0 % j is even ...

7 years 前 | 1 个回答 | 0

1

个回答

提问


I have an input array 'z' with which I want to create an array 'p' in the way given below. The length and values of 'z' is varying. How I can register 'p' for every case of 'z'. Thank you
z=[-0.5,-0.25,0,0.25,0.5]; p=zeros(1,2*(length(z))-2); p(1)=z(1); p(end)=z(end); and p should look...

7 years 前 | 1 个回答 | 0

1

个回答

提问


Hello. I am new to matlab and I have this problem. I need to store 91 different 3x3 matrices. Yet I get this error 'Subscripted assignment dimension mismatch.' Can someone help me out. Many thanks
thetha=0:1:90; for i=1:length(thetha) c(i)=cosd(thetha(i)); s(i)=sind(thetha(i)); T(i)=[c(i)^2 s(i...

7 years 前 | 1 个回答 | 0

1

个回答