Binbin Qi - MATLAB Central
photo

Binbin Qi


China University of Petroleum

Last seen: ungefär en månad ago Active since 2009

Followers: 2   Following: 0

Message

Professional Interests: Machine Learning/ Math/ Geophysics

Statistics

All
CodyMATLAB AnswersFile ExchangeFrom 09/09 to 04/25Use left and right arrows to move selectionFrom 09/09Use left and right arrows to move left selectionTo 04/25Use left and right arrows to move right selectionUse TAB to select grip buttons or left and right arrows to change selection100%
MATLAB Answers

2 Questions
14 Answers

File Exchange

8 Files

Cody

18 Problems
5228 Solutions

RANK
2 314
of 297 986

REPUTATION
28

CONTRIBUTIONS
2 Questions
14 Answers

ANSWER ACCEPTANCE
50.0%

VOTES RECEIVED
4

RANK
4 143 of 20 517

REPUTATION
349

AVERAGE RATING
3.70

CONTRIBUTIONS
8 Files

DOWNLOADS
11

ALL TIME DOWNLOADS
3394

RANK
4
of 160 028

CONTRIBUTIONS
18 Problems
5228 Solutions

SCORE
52 477

NUMBER OF BADGES
124

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • MATLAB Central Treasure Hunt Finisher
  • Cody 5th Anniversary Finisher
  • Knowledgeable Level 2
  • Thankful Level 1
  • Combinatorics I Master
  • R2016b Feature Challenge Master
  • Personal Best Downloads Level 2
  • First Review
  • Divisible by x Master
  • Logic
  • Computational Geometry I Master
  • Matrix Patterns II Master

View badges

Feeds

Answered
Equivalent of c++'s NULL or python' s None in MATLAB
I think you can use class.empty for null in matlab classdef A < handle properties empty = A.empty; end end...

mer än 3 år ago | 0

Answered
Finding the number of rows to the next row containing a 1
A = [0 0 0 1 0 1 1 1 0 0 0 0 0 1]'; C = find(A); D = (1:length(A)) - C; D(D>0) = D(D>0) + inf'; min(abs(D))' ans = ...

mer än 4 år ago | 2

Answered
Create Incidence matrix from Graph theory?
ok >> G=digraph( [ 1 2 2 2 3 4] , [4 1 3 4 1 3]); >> I = full(incidence(G)) I = -1 1 0 0 1 0 ...

mer än 4 år ago | 1

| accepted

Answered
Create Incidence matrix from Graph theory?
>> G=digraph( [ 1 2 2 2 3 4] , [4 1 3 4 1 3]); >> full(G.adjacency) ans = 0 0 0 1 1 0 1 ...

mer än 4 år ago | 0

Answered
Change date format in vector
t1 = datetime("4/1/2019 12:45:00 AM",'InputFormat',"dd/MM/yyyy HH:mm:ss a"); t2 = datetime("15/6/19 18:10",'InputFormat',"dd/M...

mer än 4 år ago | 0

| accepted

Answered
For loop and if else statements with multiple conditions
clear;clc;close all [m, n] = deal(4, 8); matrix_data = rand(m, n); num = ['1st','2nd','3rd', sprintfc('%dth', 4:8)]; for i =...

mer än 4 år ago | 1

| accepted

Answered
How to get specific values from matrix in column 1, based on values in other columns?
clear;clc;close all load sub-01_T2_planktimes R = accumarray(sub01T2(:,2:3)+1,sub01T2(:,1),[], @(x){x}); R{2,2} ans = ...

mer än 4 år ago | 0

Answered
Histogram Only Plotting 1 Point
I think you can use bar, not histogram bar(error)

mer än 4 år ago | 0

Answered
Dialog UI and sprintf creating unnecessary new lines
The following is my code. It is can work normally. Can you give your code here? function mydialog(line1,line2,line3) if narg...

mer än 4 år ago | 0

Answered
How to genneral a repeat array
You can use repelem function to accomplish your question a = 1 2 3 4 >> repelem(a, 3) ...

mer än 8 år ago | 0

| accepted

Answered
How do I convert my .mlapp file into a .exe file?
you can get the main file and use deploytool command

mer än 8 år ago | 0

Answered
change font size of subplot text
I use the following code, it can work clear;clc;close all subplot(335); fplot(@sin,[-1,1]); tx = text(.5,.5,'y = s...

nästan 9 år ago | 0

Answered
Area between two curves
if you can get the points of every curve, you can use *polyarea* function to get the area, and then diff

nästan 10 år ago | 0

Answered
why slow 5 times when tic or toc and expression in one line?
Thank you, I guess the reason is JIT.Now, I confirmed

ungefär 10 år ago | 0

Question


why slow 5 times when tic or toc and expression in one line?
when tic or toc and the main expression are in one line, it will be slow *5 times* than not in a line *1: tic or toc and the ...

ungefär 10 år ago | 2 answers | 0

2

answers

Question


How to get the same rand
recently,I do cody games,and I am in trouble about the problem 207:hackathon impossible the link is: http://www.mathworks.cn/ma...

nästan 13 år ago | 1 answer | 0

1

answer