Community Profile

photo

Abdullah Caliskan


Last seen: 3 mois il y a Actif depuis 2014

Followers: 0   Following: 0

Statistiques

All
  • MATLAB Mini Hack 2022 Participant
  • First Answer
  • Famous
  • Community Group Solver
  • 5-Star Galaxy Level 1
  • First Submission
  • Project Euler I
  • Quiz Master
  • Puzzler
  • Scholar
  • ASEE Challenge Master
  • Tiles Challenge Master

Afficher les badges

Feeds

Afficher par

A répondu
how to scale the array type double of range [-1,1] to [0,1] and [0,360] to[0,1]
if input is matrix, you can use this. upper, bottom xmax =max(input); xmin =min(input); A=bsxfun(@minus,input,xmin); B=bsxfu...

plus de 6 ans il y a | 0

A répondu
How can I rotate the axis tick labels in 2-D and 3-D?
Another way List={'AAAAAAA','BBBBBBb','CCCCCCCC'} bar(1:3 ,[0.5 0.3 0.2]) set(gca,'XTickLabel',List) set(gca,'XTickL...

environ 8 ans il y a | 0

A répondu
Puzzler for a Monday
k=ismember(A,B) A(k)='' if sum(k)==0 A=A; else A=[A B] end

environ 9 ans il y a | 0