photo

Nihal Rao


Con actividad desde 2018

Followers: 0   Following: 0

Estadística

MATLAB Answers

4 Preguntas
0 Respuestas

CLASIFICACIÓN
283.450
of 301.529

REPUTACIÓN
0

CONTRIBUCIONES
4 Preguntas
0 Respuestas

ACEPTACIÓN DE RESPUESTAS
100.0%

VOTOS RECIBIDOS
0

CLASIFICACIÓN
 of 21.315

REPUTACIÓN
N/A

EVALUACIÓN MEDIA
0.00

CONTRIBUCIONES
0 Archivos

DESCARGAS
0

ALL TIME DESCARGAS
0

CLASIFICACIÓN

of 175.175

CONTRIBUCIONES
0 Problemas
0 Soluciones

PUNTUACIÓN
0

NÚMERO DE INSIGNIAS
0

CONTRIBUCIONES
0 Publicaciones

CONTRIBUCIONES
0 Público Canales

EVALUACIÓN MEDIA

CONTRIBUCIONES
0 Temas destacados

MEDIA DE ME GUSTA

  • Thankful Level 2
  • Thankful Level 1

Ver insignias

Feeds

Ver por

Pregunta


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...

más de 7 años hace | 1 respuesta | 0

1

respuesta

Pregunta


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 ...

más de 7 años hace | 1 respuesta | 0

1

respuesta

Pregunta


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...

más de 7 años hace | 1 respuesta | 0

1

respuesta

Pregunta


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...

más de 7 años hace | 1 respuesta | 0

1

respuesta