photo

Nihal Rao


Active since 2018

Followers: 0   Following: 0

Statistics

MATLAB Answers

4 Questions
0 Answers

RANK
130,486
of 301,464

REPUTATION
0

CONTRIBUTIONS
4 Questions
0 Answers

ANSWER ACCEPTANCE
100.0%

VOTES RECEIVED
0

RANK
 of 21,292

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK

of 174,642

CONTRIBUTIONS
0 Problems
0 Solutions

SCORE
0

NUMBER OF BADGES
0

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Discussions

AVERAGE NO. OF LIKES

  • Thankful Level 2
  • Thankful Level 1

View badges

Feeds

View by

Question


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 ago | 1 answer | 0

1

answer

Question


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 ago | 1 answer | 0

1

answer

Question


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 ago | 1 answer | 0

1

answer

Question


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 ago | 1 answer | 0

1

answer