photo

Nihal Rao


2018년부터 활동

Followers: 0   Following: 0

통계

MATLAB Answers

4 질문
0 답변

순위
135,137
of 301,652

평판
0

참여
4 질문
0 답변

답변 채택
100.0%

획득한 표
0

순위
 of 21,375

평판
N/A

평균 평점
0.00

참여
0 파일

다운로드 수
0

ALL TIME 다운로드 수
0

순위

of 175,981

참여
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년 초과 전 | 답변 수: 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년 초과 전 | 답변 수: 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년 초과 전 | 답변 수: 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년 초과 전 | 답변 수: 1 | 0

1

답변