photo

carmen


2012년부터 활동

Followers: 0   Following: 0

메시지

통계

MATLAB Answers

3 질문
7 답변

순위
6,577
of 300,369

평판
7

참여
3 질문
7 답변

답변 채택
66.67%

획득한 표
5

순위
 of 20,936

평판
N/A

평균 평점
0.00

참여
0 파일

다운로드 수
0

ALL TIME 다운로드 수
0

순위

of 168,436

참여
0 문제
0 답안

점수
0

배지 수
0

참여
0 게시물

참여
0 공개 채널

평균 평점

참여
0 하이라이트

평균 좋아요 수

  • First Review
  • Thankful Level 1
  • First Answer

배지 보기

Feeds

보기 기준

질문


reset GUI axes properties, including position etc
Hello, I have an axes object within a GUI that is subsequently used for different images/plots. How can i reset all prope...

13년 초과 전 | 답변 수: 0 | 0

0

답변

답변 있음
functions vs. script
Thank you everybody for a set of very good answers, i think you helped me out to a great extend and made me do a big step forwar...

13년 초과 전 | 0

답변 있음
Delete rows with NaN records
check out the isnan() functioion. the following code looks like a workaround but it works: A=[1 2 3;nan 4 5;nan 6 nan]; ...

13년 초과 전 | 1

답변 있음
not take into account zeros in a graph
another way is to use z=[3 0 2 0 0 0 5 0 2 0 0 0 4 0 1 0 0 8]; z(z=0)=[] % now z == [3 2 5 2 4 1 8] plot(z) this...

13년 초과 전 | 0

질문


functions vs. script
Hello, my question is, what advantages do i have from using functions instead of scripts? I am writing code with matlab for ...

13년 초과 전 | 답변 수: 7 | 3

7

답변

답변 있음
non zero elements above 70 and below -70 zero
then you modify Honglei Chen 's approach according to your wish: x(1:2,x(1:2,:)>70 | x(1:2,:)<-70)=0 that should be it...

13년 초과 전 | 0

답변 있음
matrix, using variables like a1,a2,a3,...an, minimum
ok heres a brute force version without fancy commands. a=[2 6 7 8;4 5 3 7;9 7 6 9;5 3 1 9] rows=size(a,1); colum...

13년 초과 전 | 0

답변 있음
storing data set
sure :) ok my answer was kind of an overkill, sorry! let "a" be your 200x200 variable and "savea.mat" the file you want to s...

13년 초과 전 | 1

답변 있음
storing data set
I onec used save(sprintf('%s\\%s\\filename',pwd,'foldername'),'varname'); load(sprintf('%s\\%s\\filename',pwd,'foldern...

13년 초과 전 | 0

질문


meshgrid() confusion (dimesions, index,...)
Hello everybody, i have a fundamental question on the meshgrid() function. I have a 10x20x30 cubus of scalar data. i wanted to...

13년 초과 전 | 답변 수: 1 | 0

1

답변