photo

Udit Dhand


2018년부터 활동

Followers: 0   Following: 0

통계

All
MATLAB Answers

1 질문
4 답변

Cody

0 문제
10 답안

순위
4,029
of 301,517

평판
14

참여
1 질문
4 답변

답변 채택
100.0%

획득한 표
3

순위
 of 21,314

평판
N/A

평균 평점
0.00

참여
0 파일

다운로드 수
0

ALL TIME 다운로드 수
0

순위
38,637
of 175,060

참여
0 문제
10 답안

점수
120

배지 수
1

참여
0 게시물

참여
0 공개 채널

평균 평점

참여
0 하이라이트

평균 좋아요 수

  • Knowledgeable Level 1
  • Solver
  • First Answer
  • Thankful Level 1

배지 보기

Feeds

보기 기준

답변 있음
How can I map to each vector entry a number telling its occurence so far?
I wasnt able to do it without using while loop vec = [1,2,3,4,2,5,2,3]; j=length(vec);k=0; while k~=j o = find...

7년 초과 전 | 0

답변 있음
The mean Nusselt number for turbulent flow over a plate of length l is Nu=0.037 Re^0.8 Pr/(1+2.443Re^-0.1(Pr^2/3 -1)) , 5x10^5<Re<10^7,0.6<Pr<2000' where Re is the Reynolds number and Pr is the Prandtl number. Plot log10(Nu) as a surface that is a fu
[Re,Pr]=meshgrid(5*10^4:100000:10^7,0.6:10:2000); Z=log((0.037.*Re.^0.8.*Pr)./(1+2.443*Re.^-0.1.*(Pr.^(2/3)-1))); surf(P...

거의 8년 전 | 1

| 수락됨

답변 있음
How to save uitable & uifigure into pdf file?
fig = figure('Name','Numbers'); t = uitable(fig,'Data',[2,4,6,8;1,3,5,7]); saveas(gcf,'Numbers','pdf') Apparantly th...

거의 8년 전 | 2

| 수락됨

답변 있음
Assigning values for vector with number sequence
function p=fun(n,r1,r2) m=(n^2+3*n)/2; mat=[0 0]; count=1; p=ones(1,m); for j=1:n mat=[m...

거의 8년 전 | 0

질문


uigetdir not working in standalone application
I have created a gui which uses uigetdir in one of the pushbuttons and it works in matlab application, but when converted to sta...

거의 8년 전 | 답변 수: 1 | 0

1

답변