photo

Pink_panther


Con actividad desde 2012

Followers: 0   Following: 0

Mensaje

Engineering

Programming Languages:
MATLAB, HTML
Spoken Languages:
English

Estadística

All
MATLAB Answers

0 Preguntas
3 Respuestas

File Exchange

2 Archivos

Cody

1 Problema
270 Soluciones

CLASIFICACIÓN
10.010
of 298.572

REPUTACIÓN
4

CONTRIBUCIONES
0 Preguntas
3 Respuestas

ACEPTACIÓN DE RESPUESTAS
0.00%

VOTOS RECIBIDOS
0

CLASIFICACIÓN
14.603 of 20.619

REPUTACIÓN
14

EVALUACIÓN MEDIA
5.00

CONTRIBUCIONES
2 Archivos

DESCARGAS
2

ALL TIME DESCARGAS
51

CLASIFICACIÓN
592
of 161.704

CONTRIBUCIONES
1 Problema
270 Soluciones

PUNTUACIÓN
3.124

NÚMERO DE INSIGNIAS
8

CONTRIBUCIONES
0 Publicaciones

CONTRIBUCIONES
0 Público Canales

EVALUACIÓN MEDIA

CONTRIBUCIONES
0 Temas destacados

MEDIA DE ME GUSTA

  • MATLAB Shorts Mini Hack Participant
  • MATLAB Flipbook Mini Hack Participant
  • Knowledgeable Level 1
  • First Answer
  • Creator
  • CUP Challenge Master
  • 5-Star Galaxy Level 2
  • First Submission
  • MATLAB Mini Hack 2022 Participant
  • MATLAB Mini Hack Participant
  • Treasure Hunt Participant
  • Introduction to MATLAB Master

Ver insignias

Feeds

Ver por

Respondida
plotting a polynomial function
%solve1 fplot(@(x)89.9659+0.1110371.*x-0.001472155.*x.^2+1.1E-5.*x.^3-4.381E-8.*x.^4+1E-10.*x.^5)

más de 1 año hace | 0

Respondida
1x10 matrix using a single while loop
OP was asking for one liner. Here is the shorter verion, it worked on my PC. n=10;A=[];k=1;while k <=n,A=cat(2,A,k),k=k+1;end

más de 4 años hace | 0

Respondida
1x10 matrix using a single while loop
n=10;A =zeros(1,n);k=1; while k <=n A(k)=k k=k+1; end

más de 4 años hace | 0

| aceptada